Google suspended the app because of "Impersonation" violation =(

Changed library name from com.unciv.game to com.unciv.app for app change
This commit is contained in:
Yair Morgenstern 2019-01-02 22:07:47 +02:00
parent a1e7e168b3
commit b776bd777c
6 changed files with 21 additions and 21 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unciv.game" >
package="com.unciv.app" >
<uses-sdk/>
@ -12,7 +12,7 @@
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="com.unciv.game.AndroidLauncher"
android:name="com.unciv.app.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">

View file

@ -697,6 +697,20 @@ ImprovementIcons/Quarry
orig: 100, 100
offset: 0, 0
index: -1
ImprovementIcons/Railroad
rotate: false
xy: 1734, 722
size: 100, 100
orig: 100, 100
offset: 0, 0
index: -1
OtherIcons/Railroad
rotate: false
xy: 1734, 722
size: 100, 100
orig: 100, 100
offset: 0, 0
index: -1
ImprovementIcons/Road
rotate: false
xy: 347, 407
@ -774,20 +788,6 @@ OtherIcons/Pentagon
orig: 100, 100
offset: 0, 0
index: -1
OtherIcons/Railroad
rotate: false
xy: 1734, 722
size: 100, 100
orig: 100, 100
offset: 0, 0
index: -1
ImprovementIcons/Railroad
rotate: false
xy: 1734, 722
size: 100, 100
orig: 100, 100
offset: 0, 0
index: -1
OtherIcons/Shield
rotate: false
xy: 692, 622

View file

@ -18,7 +18,7 @@ android {
exclude 'META-INF/robovm/ios/robovm.xml'
}
defaultConfig {
applicationId "com.unciv.game"
applicationId "com.unciv.app"
minSdkVersion 14
targetSdkVersion 28
versionCode 185
@ -104,7 +104,7 @@ task run(type: Exec) {
}
def adb = path + "/platform-tools/adb"
commandLine "$adb", 'shell', 'am', 'start', '-n', 'com.unciv.game/AndroidLauncher'
commandLine "$adb", 'shell', 'am', 'start', '-n', 'com.unciv.app/AndroidLauncher'
}
// sets up the Android Eclipse project, using the old Ant based build.

View file

@ -1,4 +1,4 @@
package com.unciv.game;
package com.unciv.app;
import android.os.Bundle;

View file

@ -1,4 +1,4 @@
package com.unciv.game.desktop;
package com.unciv.app.desktop;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;

View file

@ -1,4 +1,4 @@
package com.unciv.game;
package com.unciv.app;
import com.badlogic.gdx.backends.iosrobovm.IOSApplication;
import com.badlogic.gdx.backends.iosrobovm.IOSApplicationConfiguration;