summaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-01-03 22:01:57 +0100
committerMinteck <contact@minteck.org>2023-01-03 22:01:57 +0100
commit5d7695aa154f294defa17e151d88df0b12c60098 (patch)
tree727ee7068c20ce15cd9652bbe27a8e7f186979e5 /app/build.gradle.kts
downloaddelta-android-5d7695aa154f294defa17e151d88df0b12c60098.tar.gz
delta-android-5d7695aa154f294defa17e151d88df0b12c60098.tar.bz2
delta-android-5d7695aa154f294defa17e151d88df0b12c60098.zip
Initial commit
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts61
1 files changed, 61 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
new file mode 100644
index 0000000..669068d
--- /dev/null
+++ b/app/build.gradle.kts
@@ -0,0 +1,61 @@
+plugins {
+ id("com.android.application")
+ id("org.jetbrains.kotlin.android")
+ id("com.google.gms.google-services")
+}
+
+android {
+ namespace = "dev.equestria.delta"
+ compileSdk = 33
+
+ defaultConfig {
+ applicationId = "dev.equestria.delta"
+ minSdk = 27
+ targetSdk = 33
+ versionCode = 2
+ versionName = "5.0-8"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ resConfigs("en", "fr")
+ }
+
+ buildFeatures {
+ buildConfig = true
+ }
+
+ buildTypes {
+ getByName("release") {
+ proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+ kotlinOptions {
+ jvmTarget = "1.8"
+ }
+ buildFeatures {
+ viewBinding = true
+ }
+}
+
+dependencies {
+ implementation("com.android.volley:volley:1.2.1")
+ implementation("androidx.core:core-ktx:1.9.0")
+ implementation("androidx.appcompat:appcompat:1.5.1")
+ implementation("com.google.android.material:material:1.7.0")
+ implementation("androidx.constraintlayout:constraintlayout:2.1.4")
+ implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.5.1")
+ implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
+ implementation("androidx.navigation:navigation-fragment-ktx:2.5.3")
+ implementation("androidx.navigation:navigation-ui-ktx:2.5.3")
+ implementation("androidx.core:core-ktx:1.9.0")
+ testImplementation("junit:junit:4.13.2")
+ androidTestImplementation("androidx.test.ext:junit:1.1.4")
+ androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
+ implementation("com.squareup.picasso:picasso:2.8")
+ implementation(platform("com.google.firebase:firebase-bom:31.1.1"))
+ implementation("com.google.firebase:firebase-analytics-ktx")
+ implementation("com.google.firebase:firebase-messaging-ktx")
+} \ No newline at end of file