fedilab-Android-App/mytransl/build.gradle

34 lines
931 B
Groovy

apply plugin: 'com.android.library'
group = 'com.github.stom79'
android {
compileSdkVersion 31
defaultConfig {
minSdkVersion 15
targetSdkVersion 31
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField("String","VERSION_NAME","\"${defaultConfig.versionName}\"")
}
debug{
buildConfigField("String","VERSION_NAME","\"${defaultConfig.versionName}\"")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.github.stom79.mytransl'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "com.google.code.gson:gson:2.8.6"
}