123456789101112131415161718192021222324 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 30
- buildToolsVersion "25.0.2"
- defaultConfig {
- applicationId "com.vmloft.develop.daemon"
- minSdkVersion 16
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:25.1.1'
- }
|