Downgrade Android Gradle plugin
as new version require us to remove targetSdkVersion from Manifest
This commit is contained in:
parent
ffa5c1f7f2
commit
1e00d2c0a3
2 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,8 @@
|
|||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="26"
|
||||
android:targetSdkVersion="26" />
|
||||
android:targetSdkVersion="26"
|
||||
tools:ignore="GradleOverrides,OldTargetApi" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.BACKUP"
|
||||
|
|
|
@ -6,7 +6,8 @@ buildscript {
|
|||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.4.1'
|
||||
// newer versions require us to remove targetSdkVersion from Manifest
|
||||
classpath 'com.android.tools.build:gradle:3.1.0'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
|
Loading…
Reference in a new issue