2023-04-10 16:02:53 +03:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
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
|
2023-05-23 01:46:42 +03:00
|
|
|
targetSdk 33
|
2023-04-10 16:02:53 +03:00
|
|
|
versionCode 1
|
2023-04-21 03:45:59 +03:00
|
|
|
versionName "0.1.0"
|
2023-04-10 16:02:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
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 Android Frame Pacing library
|
|
|
|
//implementation "androidx.games:games-frame-pacing:1.9.1"
|
|
|
|
|
|
|
|
// To use the Android Performance Tuner
|
|
|
|
//implementation "androidx.games:games-performance-tuner:1.5.0"
|
|
|
|
|
|
|
|
// To use the Games Activity library
|
|
|
|
implementation "androidx.games:games-activity:1.1.0"
|
|
|
|
|
|
|
|
// To use the Games Controller Library
|
|
|
|
//implementation "androidx.games:games-controller:1.1.0"
|
|
|
|
|
|
|
|
// To use the Games Text Input Library
|
|
|
|
//implementation "androidx.games:games-text-input:1.1.0"
|
|
|
|
}
|
|
|
|
|