summaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/AndroidManifest.xml4
-rw-r--r--android/build.gradle2
-rw-r--r--android/res/values/strings.xml2
-rw-r--r--android/src/ch/asynk/tankontank/android/AndroidLauncher.java6
4 files changed, 7 insertions, 7 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 1ae8ee6..a6c6d42 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="ch.asynk.creepingarmor.android"
+ package="ch.asynk.rustanddust.android"
android:versionCode="1"
android:versionName="1.0" >
@@ -12,7 +12,7 @@
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
- android:name="ch.asynk.creepingarmor.android.AndroidLauncher"
+ android:name="ch.asynk.rustanddust.android.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
diff --git a/android/build.gradle b/android/build.gradle
index c8fba62..cbbc741 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -63,7 +63,7 @@ task run(type: Exec) {
}
def adb = path + "/platform-tools/adb"
- commandLine "$adb", 'shell', 'am', 'start', '-n', 'ch.asynk.creepingarmor.android/ch.asynk.creepingarmor.android.AndroidLauncher'
+ commandLine "$adb", 'shell', 'am', 'start', '-n', 'ch.asynk.rustanddust.android/ch.asynk.rustanddust.android.AndroidLauncher'
}
// sets up the Android Eclipse project, using the old Ant based build.
diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml
index 98b0131..a384f6e 100644
--- a/android/res/values/strings.xml
+++ b/android/res/values/strings.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <string name="app_name">CreepingArmor</string>
+ <string name="app_name">RustAndDust</string>
</resources>
diff --git a/android/src/ch/asynk/tankontank/android/AndroidLauncher.java b/android/src/ch/asynk/tankontank/android/AndroidLauncher.java
index 1390870..46f2da9 100644
--- a/android/src/ch/asynk/tankontank/android/AndroidLauncher.java
+++ b/android/src/ch/asynk/tankontank/android/AndroidLauncher.java
@@ -1,16 +1,16 @@
-package ch.asynk.creepingarmor.android;
+package ch.asynk.rustanddust.android;
import android.os.Bundle;
import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
-import ch.asynk.creepingarmor.CreepingArmor;
+import ch.asynk.rustanddust.RustAndDust;
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
- initialize(new CreepingArmor(), config);
+ initialize(new RustAndDust(), config);
}
}