summaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-09-21 21:20:17 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-09-21 21:20:17 +0200
commit7a012fedd21a03a26bb40fdf8a91315b6c512ec9 (patch)
tree711cd44e2697bbce85e34907a3b32da3a12d6437 /app/build.gradle
downloadlector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.tar.gz
lector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.tar.zst
lector-de-codi-7a012fedd21a03a26bb40fdf8a91315b6c512ec9.zip
Initial commit
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle47
1 files changed, 47 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..e945c07
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,47 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ compileSdk 32
+
+ defaultConfig {
+ applicationId "com.jopek.lectordecodi"
+ minSdk 28
+ targetSdk 32
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+ buildFeatures {
+ viewBinding true
+ }
+ namespace 'com.jopek.lectordecodi'
+}
+
+dependencies {
+
+ implementation 'androidx.appcompat:appcompat:1.5.1'
+ implementation 'com.google.android.material:material:1.6.1'
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
+ implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
+ api "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
+ implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
+ implementation 'androidx.navigation:navigation-fragment:2.3.5'
+ implementation 'androidx.navigation:navigation-ui:2.3.5'
+ testImplementation 'junit:junit:4.13.2'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.3'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
+} \ No newline at end of file