You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.7 KiB
Groovy
76 lines
2.7 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'com.google.firebase.crashlytics'
|
|
id 'com.google.gms.google-services'
|
|
id 'androidx.navigation.safeargs.kotlin'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.cyb3rko.techniklogger'
|
|
signingConfigs {
|
|
signingconf {
|
|
Properties properties = new Properties()
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
|
|
storeFile file(properties.getProperty("signing.file"))
|
|
storePassword properties.getProperty("signing.password")
|
|
keyAlias properties.getProperty("signing.key.alias")
|
|
keyPassword properties.getProperty("signing.key.password")
|
|
}
|
|
}
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.cyb3rko.techniklogger"
|
|
minSdk 19
|
|
targetSdk 34
|
|
versionCode 17
|
|
versionName "2.2.3"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
manifestPlaceholders = [firebaseCollectionEnabled:"false"]
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
minifyEnabled true
|
|
}
|
|
release {
|
|
signingConfig signingConfigs.signingconf
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
manifestPlaceholders = [firebaseCollectionEnabled:"true"]
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform('com.google.firebase:firebase-bom:31.4.0')
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.1'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'com.airbnb.android:lottie:5.2.0'
|
|
implementation 'com.amitshekhar.android:android-networking:1.0.2'
|
|
implementation 'com.github.GrenderG:Toasty:1.5.2'
|
|
implementation 'com.github.parse-community.Parse-SDK-Android:parse:1.26.0'
|
|
implementation 'com.google.android.material:material:1.10.0'
|
|
implementation 'com.google.firebase:firebase-analytics-ktx' // BOM versioning
|
|
implementation 'com.google.firebase:firebase-crashlytics-ktx' // BOM versioning
|
|
implementation 'com.itextpdf:itextpdf:5.5.13.3'
|
|
}
|