2020-05-12 14:52:56 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
2024-08-31 23:07:48 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
android {
|
|
|
|
|
2024-07-31 17:08:41 +02:00
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
packaging {
|
|
|
|
resources.excludes.addAll(
|
|
|
|
[
|
|
|
|
"META-INF/LICENSE.md",
|
|
|
|
"META-INF/NOTICE.md",
|
|
|
|
"META-INF/LICENSE-notice.md"
|
|
|
|
]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
defaultConfig {
|
2024-07-02 21:21:51 +02:00
|
|
|
applicationId "de.jrpie.android.launcher"
|
2024-07-06 00:57:51 +02:00
|
|
|
minSdkVersion 21
|
2024-07-06 03:12:57 +02:00
|
|
|
targetSdkVersion 35
|
2024-08-31 23:07:48 +02:00
|
|
|
compileSdk 35
|
2024-12-12 21:27:03 +01:00
|
|
|
versionCode 34
|
|
|
|
versionName "j-0.0.18"
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2024-07-31 17:08:41 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '17'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2024-09-11 10:49:45 +02:00
|
|
|
// minifyEnabled true
|
|
|
|
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2020-05-12 14:52:56 +02:00
|
|
|
}
|
|
|
|
}
|
2024-07-06 21:23:28 +02:00
|
|
|
namespace 'de.jrpie.android.launcher'
|
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
}
|
2020-05-12 14:52:56 +02:00
|
|
|
|
2024-11-04 17:38:23 +01:00
|
|
|
dependenciesInfo {
|
|
|
|
// Disables dependency metadata when building APKs.
|
|
|
|
includeInApk = false
|
|
|
|
// Disables dependency metadata when building Android App Bundles.
|
|
|
|
includeInBundle = false
|
|
|
|
}
|
|
|
|
|
2024-11-11 19:20:22 +01:00
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
2024-11-03 17:47:23 +01:00
|
|
|
implementation 'androidx.core:core-ktx:1.15.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
|
|
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
|
|
|
implementation 'androidx.palette:palette-ktx:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
|
|
|
implementation 'com.google.android.material:material:1.12.0'
|
2024-09-09 21:23:01 +02:00
|
|
|
implementation "eu.jonahbauer:android-preference-annotations:1.1.2"
|
2024-09-11 10:49:45 +02:00
|
|
|
annotationProcessor "eu.jonahbauer:android-preference-annotations:1.1.2"
|
2024-11-03 17:47:23 +01:00
|
|
|
annotationProcessor "com.android.databinding:compiler:$android_plugin_version"
|
2024-08-31 23:07:48 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
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'
|
2020-05-12 14:52:56 +02:00
|
|
|
}
|
2024-07-31 17:08:41 +02:00
|
|
|
|