We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Everything works great in debug, but my release build fails with the following
W/ContentResolver: Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar)
Here is my build.gradle buildTypes { debug { signingConfig signingConfigs.debug } release { signingConfig signingConfigs.release minifyEnabled false proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" } }
buildTypes { debug { signingConfig signingConfigs.debug } release { signingConfig signingConfigs.release minifyEnabled false proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" } }
The text was updated successfully, but these errors were encountered:
Hi @jfurdock Try adding this to your android manifest
Sorry, something went wrong.
what should be added?
@ddikodroid That is so silly of me. I got side tracked in testing out and watching the android logs.
All uses permissions are added automatically and don't need to be duplicated.
No branches or pull requests
Everything works great in debug, but my release build fails with the following
W/ContentResolver: Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar)
Here is my build.gradle
buildTypes { debug { signingConfig signingConfigs.debug } release { signingConfig signingConfigs.release minifyEnabled false proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" } }
The text was updated successfully, but these errors were encountered: