launcher/app/build.gradle

75 lines
2 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
2024-07-18 23:11:51 +02:00
compileSdkVersion 34
2024-07-06 21:23:28 +02:00
buildToolsVersion "34.0.0"
dataBinding {
enabled = true
}
packaging {
resources.excludes.addAll(
[
"META-INF/LICENSE.md",
"META-INF/NOTICE.md",
"META-INF/LICENSE-notice.md"
]
)
}
defaultConfig {
2024-07-02 21:21:51 +02:00
applicationId "de.jrpie.android.launcher"
minSdkVersion 21
2024-07-06 03:12:57 +02:00
targetSdkVersion 35
versionCode 22
2024-08-28 21:02:27 +02:00
versionName "j-0.0.9"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
buildFeatures {
viewBinding true
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2024-07-06 21:23:28 +02:00
namespace 'de.jrpie.android.launcher'
buildFeatures {
buildConfig true
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2024-07-30 20:07:29 +02:00
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
2024-07-30 20:07:29 +02:00
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
2024-07-06 03:12:57 +02:00
implementation 'androidx.palette:palette-ktx:1.0.0'
implementation "com.android.databinding:compiler:$android_plugin_version"
}