WMS_Native/dynamic_gramm/build.gradle
GiuseppeS 6d99c1fea4 Fix su gestione istanze del menu principale.
Parametrizzato il Pickibg Libero in modo che possa lavorare anche con la lavorazione.
2020-09-30 12:54:42 +02:00

28 lines
780 B
Groovy

apply plugin: "com.android.dynamic-feature"
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation project(":app")
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
}