diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-10-21 03:32:14 +0200 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-10-21 03:32:14 +0200 |
commit | 36f0cc501c433181ddd318e0c0b9e1ad11aa51ae (patch) | |
tree | 6e9fffd0e860efe9d0346349b88f172d707b2f62 /ClientApp/app/build.gradle | |
parent | cd92fea95833303f0e2083f059ca47c0d5e027da (diff) |
Diffstat (limited to 'ClientApp/app/build.gradle')
-rw-r--r-- | ClientApp/app/build.gradle | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/ClientApp/app/build.gradle b/ClientApp/app/build.gradle new file mode 100644 index 0000000..584bedb --- /dev/null +++ b/ClientApp/app/build.gradle @@ -0,0 +1,56 @@ +plugins { + id 'com.android.application' + id 'org.jetbrains.kotlin.android' +} + +android { + namespace 'com.example.clientapp' + compileSdk 32 + + defaultConfig { + applicationId "com.example.clientapp" + minSdk 21 + 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 + } + kotlinOptions { + jvmTarget = '1.8' + } + buildFeatures { + viewBinding = true + } +} + +dependencies { + + implementation 'androidx.core:core-ktx:1.7.0' + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'com.google.android.material:material:1.6.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + + + + //retrofit2 + implementation 'com.squareup.retrofit2:retrofit:2.7.2' + implementation 'com.squareup.retrofit2:converter-gson:2.7.2' + + + +}
\ No newline at end of file |