-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
I recognized, that I can't build my app with image_gallery for release version in android.
That was because compileSDKVersion 27 is no longer compatible.
here's my solution:
group 'adhoc.successive.com.fluttergallaryplugin'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'com.karumi:dexter:5.0.0'
implementation 'androidx.annotation:annotation:1.1.0'
}
dekoding, Ahmadre and yasinarik
Metadata
Metadata
Assignees
Labels
No labels