diff options
| author | ilotterytea <iltsu@alright.party> | 2022-08-26 18:58:12 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-08-26 18:58:12 +0600 |
| commit | 00739b98788c03015bed5ddfc353c24068e74bb8 (patch) | |
| tree | 24a657fbc6963134177a591665da120b1ff35261 /android/build.gradle | |
| parent | 6377ee262c95537355801ee28149b87eb6d9cb9e (diff) | |
fuck android all my homies use desktop
Diffstat (limited to 'android/build.gradle')
| -rw-r--r-- | android/build.gradle | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/android/build.gradle b/android/build.gradle deleted file mode 100644 index 6dcd79a..0000000 --- a/android/build.gradle +++ /dev/null @@ -1,91 +0,0 @@ -/*android { - buildToolsVersion "31.0.0" - compileSdkVersion 31 - 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 { - exclude 'META-INF/robovm/ios/robovm.xml' - } - defaultConfig { - applicationId "com.ilotterytea.maxoning" - minSdkVersion 14 - targetSdkVersion 31 - versionCode 1 - versionName "1.0" - } - 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" -*/
\ No newline at end of file |
