From 00739b98788c03015bed5ddfc353c24068e74bb8 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Fri, 26 Aug 2022 18:58:12 +0600 Subject: fuck android all my homies use desktop --- android/AndroidManifest.xml | 29 ------- android/build.gradle | 91 --------------------- android/ic_launcher-web.png | Bin 22195 -> 0 bytes android/proguard-rules.pro | 42 ---------- android/project.properties | 9 -- android/res/drawable-anydpi-v26/ic_launcher.xml | 6 -- .../drawable-anydpi-v26/ic_launcher_foreground.xml | 40 --------- android/res/drawable-hdpi/ic_launcher.png | Bin 16820 -> 0 bytes android/res/drawable-mdpi/ic_launcher.png | Bin 16124 -> 0 bytes android/res/drawable-xhdpi/ic_launcher.png | Bin 17915 -> 0 bytes android/res/drawable-xxhdpi/ic_launcher.png | Bin 18746 -> 0 bytes android/res/drawable-xxxhdpi/ic_launcher.png | Bin 19448 -> 0 bytes android/res/values/color.xml | 4 - android/res/values/strings.xml | 6 -- .../com/ilotterytea/maxoning/AndroidLauncher.java | 16 ---- 15 files changed, 243 deletions(-) delete mode 100644 android/AndroidManifest.xml delete mode 100644 android/build.gradle delete mode 100644 android/ic_launcher-web.png delete mode 100644 android/proguard-rules.pro delete mode 100644 android/project.properties delete mode 100644 android/res/drawable-anydpi-v26/ic_launcher.xml delete mode 100644 android/res/drawable-anydpi-v26/ic_launcher_foreground.xml delete mode 100644 android/res/drawable-hdpi/ic_launcher.png delete mode 100644 android/res/drawable-mdpi/ic_launcher.png delete mode 100644 android/res/drawable-xhdpi/ic_launcher.png delete mode 100644 android/res/drawable-xxhdpi/ic_launcher.png delete mode 100644 android/res/drawable-xxxhdpi/ic_launcher.png delete mode 100644 android/res/values/color.xml delete mode 100644 android/res/values/strings.xml delete mode 100644 android/src/com/ilotterytea/maxoning/AndroidLauncher.java (limited to 'android') diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml deleted file mode 100644 index 28bee37..0000000 --- a/android/AndroidManifest.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - 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 diff --git a/android/ic_launcher-web.png b/android/ic_launcher-web.png deleted file mode 100644 index 8f0110d..0000000 Binary files a/android/ic_launcher-web.png and /dev/null differ diff --git a/android/proguard-rules.pro b/android/proguard-rules.pro deleted file mode 100644 index 6e0b079..0000000 --- a/android/proguard-rules.pro +++ /dev/null @@ -1,42 +0,0 @@ -# To enable ProGuard in your project, edit project.properties -# to define the proguard.config property as described in that file. -# -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in ${sdk.dir}/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the ProGuard -# include property in project.properties. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - --verbose - --dontwarn com.badlogic.gdx.backends.android.AndroidFragmentApplication --dontwarn com.badlogic.gdx.utils.GdxBuild --dontwarn com.badlogic.gdx.physics.box2d.utils.Box2DBuild --dontwarn com.badlogic.gdx.jnigen.BuildTarget* --dontwarn com.badlogic.gdx.graphics.g2d.freetype.FreetypeBuild - -# Required if using Gdx-Controllers extension --keep class com.badlogic.gdx.controllers.android.AndroidControllers - -# Required if using Box2D extension --keepclassmembers class com.badlogic.gdx.physics.box2d.World { - boolean contactFilter(long, long); - void beginContact(long); - void endContact(long); - void preSolve(long, long); - void postSolve(long, long); - boolean reportFixture(long); - float reportRayFixture(long, float, float, float, float, float); -} diff --git a/android/project.properties b/android/project.properties deleted file mode 100644 index 3fefa92..0000000 --- a/android/project.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This file is used by the Eclipse ADT plugin. It is unnecessary for IDEA and Android Studio projects, which -# configure Proguard and the Android target via the build.gradle file. - -# To enable ProGuard to work with Eclipse ADT, uncomment this (available properties: sdk.dir, user.home) -# and ensure proguard.jar in the Android SDK is up to date (or alternately reduce the android target to 23 or lower): -# proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-rules.pro - -# Project target. -target=android-19 diff --git a/android/res/drawable-anydpi-v26/ic_launcher.xml b/android/res/drawable-anydpi-v26/ic_launcher.xml deleted file mode 100644 index 6c7313a..0000000 --- a/android/res/drawable-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - diff --git a/android/res/drawable-anydpi-v26/ic_launcher_foreground.xml b/android/res/drawable-anydpi-v26/ic_launcher_foreground.xml deleted file mode 100644 index 5916ee8..0000000 --- a/android/res/drawable-anydpi-v26/ic_launcher_foreground.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - diff --git a/android/res/drawable-hdpi/ic_launcher.png b/android/res/drawable-hdpi/ic_launcher.png deleted file mode 100644 index 91f696b..0000000 Binary files a/android/res/drawable-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/res/drawable-mdpi/ic_launcher.png b/android/res/drawable-mdpi/ic_launcher.png deleted file mode 100644 index c1ab239..0000000 Binary files a/android/res/drawable-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/res/drawable-xhdpi/ic_launcher.png b/android/res/drawable-xhdpi/ic_launcher.png deleted file mode 100644 index 2011cc0..0000000 Binary files a/android/res/drawable-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/res/drawable-xxhdpi/ic_launcher.png b/android/res/drawable-xxhdpi/ic_launcher.png deleted file mode 100644 index 25fcef0..0000000 Binary files a/android/res/drawable-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/res/drawable-xxxhdpi/ic_launcher.png b/android/res/drawable-xxxhdpi/ic_launcher.png deleted file mode 100644 index d109946..0000000 Binary files a/android/res/drawable-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/res/values/color.xml b/android/res/values/color.xml deleted file mode 100644 index 933353e..0000000 --- a/android/res/values/color.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - #FFFFFFFF - diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml deleted file mode 100644 index cbe6c20..0000000 --- a/android/res/values/strings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - Maxon Petting Simulator - - diff --git a/android/src/com/ilotterytea/maxoning/AndroidLauncher.java b/android/src/com/ilotterytea/maxoning/AndroidLauncher.java deleted file mode 100644 index f217cb9..0000000 --- a/android/src/com/ilotterytea/maxoning/AndroidLauncher.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.ilotterytea.maxoning; - -import android.os.Bundle; - -import com.badlogic.gdx.backends.android.AndroidApplication; -import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration; -import com.ilotterytea.maxoning.MaxonGame; - -public class AndroidLauncher extends AndroidApplication { - @Override - protected void onCreate (Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - AndroidApplicationConfiguration config = new AndroidApplicationConfiguration(); - initialize(new MaxonGame(), config); - } -} -- cgit v1.2.3