This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Gallery_Bck20260425_042304_713/app/build.gradle
2026-04-24 06:39:33 +08:00

27 lines
654 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
buildToolsVersion "33.0.0"
defaultConfig {
applicationId "cc.winboll.gallery"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}