54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id 'com.android.application'
 | |
|     id 'org.jetbrains.kotlin.android'
 | |
|     id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.23'
 | |
| }
 | |
| 
 | |
| 
 | |
| android {
 | |
|     namespace 'net.helcel.fidelity'
 | |
|     compileSdk 34
 | |
| 
 | |
|     defaultConfig {
 | |
|         applicationId 'net.helcel.fidelity'
 | |
|         minSdk 28
 | |
|         targetSdk 34
 | |
|         versionCode 1
 | |
|         versionName "1.0"
 | |
|     }
 | |
| 
 | |
|     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.appcompat:appcompat:1.6.1'
 | |
|     implementation 'androidx.core:core-ktx:1.12.0'
 | |
|     implementation 'androidx.preference:preference-ktx:1.2.1'
 | |
|     implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
 | |
|     implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
 | |
|     implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
 | |
|     implementation 'androidx.camera:camera-camera2:1.3.2'
 | |
|     implementation 'androidx.camera:camera-lifecycle:1.3.2'
 | |
|     implementation 'androidx.camera:camera-view:1.3.2'
 | |
|     implementation 'com.google.code.gson:gson:2.10.1'
 | |
|     implementation 'com.google.android.material:material:1.11.0'
 | |
|     implementation 'com.google.zxing:core:3.5.3'
 | |
|     implementation 'com.google.mlkit:barcode-scanning:17.2.0'
 | |
| 
 | |
| } |