2023-04-10 16:02:53 +03:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
2024-04-17 01:30:28 +03:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
|
2023-04-10 16:02:53 +03:00
|
|
|
android {
|
2024-05-04 14:23:05 +03:00
|
|
|
compileSdk 33
|
2023-10-04 16:17:00 +03:00
|
|
|
ndkVersion '26.0.10792818'
|
2023-04-10 16:02:53 +03:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "mw.gri.android"
|
2023-04-21 03:45:59 +03:00
|
|
|
minSdk 24
|
2024-05-04 14:23:05 +03:00
|
|
|
targetSdk 33
|
2024-08-08 03:08:10 +03:00
|
|
|
versionCode 3
|
2024-08-10 12:08:20 +03:00
|
|
|
versionName "0.1.3"
|
2023-04-10 16:02:53 +03:00
|
|
|
}
|
|
|
|
|
2024-04-17 01:30:28 +03:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 16:02:53 +03:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2024-04-17 01:30:28 +03:00
|
|
|
signingConfig signingConfigs.release
|
2023-04-10 16:02:53 +03:00
|
|
|
}
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
2023-04-18 16:19:43 +03:00
|
|
|
debuggable true
|
2023-04-10 16:02:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
namespace 'mw.gri.android'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-04-21 03:45:59 +03:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2023-04-10 16:02:53 +03:00
|
|
|
|
|
|
|
// To use the Games Activity library
|
2024-04-16 15:24:22 +03:00
|
|
|
implementation "androidx.games:games-activity:2.0.2"
|
2023-04-10 16:02:53 +03:00
|
|
|
|
2024-05-03 19:51:57 +03:00
|
|
|
// Android Camera
|
|
|
|
implementation 'androidx.camera:camera-core:1.2.3'
|
|
|
|
implementation 'androidx.camera:camera-camera2:1.2.3'
|
|
|
|
implementation 'androidx.camera:camera-lifecycle:1.2.3'
|
2023-04-10 16:02:53 +03:00
|
|
|
}
|
|
|
|
|