123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdk 32
- defaultConfig {
- applicationId "com.xugame.gameconsole"
- minSdk 19
- targetSdk 32
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- // externalNativeBuild {
- // cmake {
- // arguments '-DANDROID_STL=c++_shared'
- // }
- // }
- ndk{
- abiFilters "armeabi-v7a"
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs 'src/main/libs'
- assets.srcDirs = ['src/main/assets']
- jni.srcDirs = []
- java.srcDirs = ['src/main/java']
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- debug {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- signingConfigs {
- debug {
- keyAlias 'system'
- keyPassword 'xugame888'
- // storeFile file('../s905_system.jks')
- storeFile file('../3588_ma_system.jks')
- // storeFile file('../android_4.4_haisi_zou_system.jks')//android4.4
- // storeFile file('../q5_t509_system.jks')
- // storeFile file('../q5_t509_system.jks')
- // storeFile file('../3399_systemkey.jks')
- // storeFile file('../android_10_system.jks')
- // storeFile file('../3288_android9_system.jks')//android10.1
- storePassword 'xugame888'
- }
- release {
- keyAlias 'system'
- keyPassword 'xugame888'
- storeFile file('../s905_system.jks')
- // storeFile file('../android_4.4_haisi_zou_system.jks')//android4.4
- storePassword 'xugame888'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- // externalNativeBuild {
- // cmake {
- // path 'src/main/cpp/CMakeLists.txt'
- // }
- // }
- }
- allprojects {
- // repositories {
- // google()
- // jcenter()
- // }
- Properties props = new Properties()
- props.load(new FileInputStream(new File(project.rootDir, "retroarch.properties")))
- props.each { prop ->
- project.ext.set(prop.key, prop.value)
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'com.google.android.material:material:1.4.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- }
|