From 36f0cc501c433181ddd318e0c0b9e1ad11aa51ae Mon Sep 17 00:00:00 2001 From: Ognjen Cirkovic Date: Fri, 21 Oct 2022 03:32:14 +0200 Subject: Commit DemoApp. --- ClientApp/app/build.gradle | 56 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 ClientApp/app/build.gradle (limited to 'ClientApp/app/build.gradle') 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 -- cgit v1.2.3