1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 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('../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')
- 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'
- }
|