creata struttura base app

This commit is contained in:
2019-10-25 16:45:36 +02:00
parent 4c10a409c4
commit 14c4b5106a
41 changed files with 1436 additions and 45 deletions

View File

@@ -0,0 +1,28 @@
apply plugin: 'com.android.dynamic-feature'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':app')
implementation 'androidx.appcompat:appcompat:1.1.0'
}