webview/app/build.gradle

24 lines
503 B
Groovy
Raw Normal View History

2018-07-10 21:05:52 +02:00
apply plugin: 'com.android.application'
android {
2019-09-23 01:17:34 +02:00
compileSdkVersion 29
2018-07-10 21:05:52 +02:00
defaultConfig {
applicationId "com.example.app"
minSdkVersion 21
2019-09-23 01:17:34 +02:00
targetSdkVersion 29
2018-07-10 21:05:52 +02:00
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}