我的目标SDK是22! 当我尝试编写外部存储时,会显示一个toast:
java.lang.SecurityExeption:需要WRITE_EXTERNAL_STORAGE权限 使用DESTINATION_FILE_URI:uid 10504没有 android.permission.WITE_EXTERNAL_STORAGE
这是错误:
任何人都可以提供帮助吗?
MY AndroidMainfest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.CowLabel">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"/>
<uses-permission android:name="com.android.vending.BILLING"/>
<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
<application
android:hardwareAccelerated="true"
android:allowBackup="true"
android:icon="@drawable/Cows"
android:label="@string/app_name"
android:supportsRtl="true"
android:name="CowLabel.util.MyApplication"
android:theme="@style/Mytheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name="CowLabel.WelcomeActivity" android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="CowLAbel.Purchase_activity"/>
<service
android:name="CowLabel.accessibilityservice"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:label="Cow Label" >
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/accessibility_service_config" />
</service>
<activity
android:name="com.CowLabel.MainActivity"></activity>
<receiver android:name="com.CowLabel.Notification_reciever"/>
</application>
</manifest>
我的Gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.CowLabel"
minSdkVersion 15
targetSdkVersion 22
versionCode 11
versionName "2.3"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
maven {
name "Fyber's maven repo"
url "https://fyber.bintray.com/maven"
}
flatDir {
dirs "libs"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'org.jsoup:jsoup:1.9.2'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.android.support:multidex:1.0.1'
compile 'com.google.android.gms:play-services-ads:10.0.1'
compile 'com.anjlab.android.iab.v3:library:1.0.+'
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.google.firebase:firebase-ads:10.0.1'
compile 'com.google.firebase:firebase-appindexing:10.0.1'
compile 'com.google.firebase:firebase-config:10.0.1'
compile 'com.google.firebase:firebase-messaging:10.0.1'
compile 'com.google.firebase:firebase-crash:10.0.1'
compile(name:'heyzap-unified-platform-10.2.2', ext:'aar')
//adcolony
compile 'com.fyber.mediation:adcolony:2.3.6-r2@aar'
//inmobi
compile 'com.fyber.mediation:inmobi:6.0.0-r3@aar'
compile 'com.squareup.picasso:picasso:2.5.2'
//tapjoy
compile 'com.fyber.mediation:tapjoy:11.8.1-r1@aar'
//unityads
compile 'com.fyber.mediation:unityads:2.0.5-r1@aar'
//vungle
compile 'com.google.dagger:dagger:2.4'
compile 'javax.inject:javax.inject:1'
// IMPORTANT!
// The latest Vungle adapter is not currently published to Fyber's maven repository.
// Please follow the "Eclipse Users" instructions to download the Vungle adapter and add the `aar` file to your project's `libs` folder
compile (name: 'fyber-vungle-4.0.3-r1', ext: 'aar')
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
我认为需要Fyber.init();
Fyber sdk似乎改变了许可
答案 1 :(得分:0)
你可以尝试从android studio分析apk文件。检查AndroidManifest.xml,查看放置在那里的用户权限。
答案 2 :(得分:0)
你必须检查你的libs,有一个lib阻止你的权限,所以你应该用“tools:replace =”maxSdkVersion“android:maxSdkVersion =”27“
强制许可