diff options
| author | ilotterytea <iltsu@alright.party> | 2022-12-24 18:17:04 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-12-24 18:17:04 +0600 |
| commit | c6d944bc8d3c86695a25b0a19cb4ab9baf0ec694 (patch) | |
| tree | 43ecf7d5c589c99bff6560a04bf74c2413e776d9 /android/build.gradle | |
| parent | dd82481dd42f71ef4886f1a63eacf9456883c5d2 (diff) | |
Removed 'android' module because it was moved to maxoning/pocket repository.
Diffstat (limited to 'android/build.gradle')
| -rw-r--r-- | android/build.gradle | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/android/build.gradle b/android/build.gradle deleted file mode 100644 index 09a505a..0000000 --- a/android/build.gradle +++ /dev/null @@ -1,92 +0,0 @@ -android { - buildToolsVersion "33.0.1" - compileSdkVersion 33 - sourceSets { - main { - manifest.srcFile 'AndroidManifest.xml' - java.srcDirs = ['src'] - aidl.srcDirs = ['src'] - renderscript.srcDirs = ['src'] - res.srcDirs = ['res'] - assets.srcDirs = ['../assets'] - jniLibs.srcDirs = ['libs'] - } - - } - packagingOptions { - resources { - excludes += ['META-INF/robovm/ios/robovm.xml'] - } - } - defaultConfig { - applicationId "com.ilotterytea.maxoning" - minSdkVersion 16 - targetSdkVersion 33 - versionCode 1 - versionName "Alpha 1.2" - } - buildTypes { - release { - minifyEnabled true - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } -} - - -// called every time gradle gets executed, takes the native dependencies of -// the natives configuration, and extracts them to the proper libs/ folders -// so they get packed with the APK. -task copyAndroidNatives { - doFirst { - file("libs/armeabi-v7a/").mkdirs() - file("libs/arm64-v8a/").mkdirs() - file("libs/x86_64/").mkdirs() - file("libs/x86/").mkdirs() - - configurations.natives.copy().files.each { jar -> - def outputDir = null - if (jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a") - if (jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a") - if(jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64") - if(jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86") - if(outputDir != null) { - copy { - from zipTree(jar) - into outputDir - include "*.so" - } - } - } - } -} - -tasks.whenTaskAdded { packageTask -> - if (packageTask.name.contains("merge") && packageTask.name.contains("JniLibFolders")) { - packageTask.dependsOn 'copyAndroidNatives' - } -} - -task run(type: Exec) { - def path - def localProperties = project.file("../local.properties") - if (localProperties.exists()) { - Properties properties = new Properties() - localProperties.withInputStream { instr -> - properties.load(instr) - } - def sdkDir = properties.getProperty('sdk.dir') - if (sdkDir) { - path = sdkDir - } else { - path = "$System.env.ANDROID_HOME" - } - } else { - path = "$System.env.ANDROID_HOME" - } - - def adb = path + "/platform-tools/adb" - commandLine "$adb", 'shell', 'am', 'start', '-n', 'com.ilotterytea.maxoning/com.ilotterytea.maxoning.AndroidLauncher' -} - -eclipse.project.name = appName + "-android" |
