Support for linking with Google Play Services, also fixed Proguard config
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -14,7 +14,5 @@ project/jni/application/src
|
||||
project/res/drawable-xhdpi/ouya_icon.png
|
||||
project/res/drawable/app_icon.png
|
||||
project/proguard-project.txt
|
||||
project/proguard-local.cfg
|
||||
project/themes/converter
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -367,6 +367,9 @@ echo >> AndroidAppSettings.cfg
|
||||
echo "# Your AdMob banner size (BANNER/FULL_BANNER/LEADERBOARD/MEDIUM_RECTANGLE/SMART_BANNER/WIDE_SKYSCRAPER/FULL_WIDTH:Height/Width:AUTO_HEIGHT/Width:Height)" >> AndroidAppSettings.cfg
|
||||
echo AdmobBannerSize=$AdmobBannerSize >> AndroidAppSettings.cfg
|
||||
echo >> AndroidAppSettings.cfg
|
||||
echo "# Google Play Game Services application ID, required for cloud saves to work" >> AndroidAppSettings.cfg
|
||||
echo GooglePlayGameServicesId=$GooglePlayGameServicesId >> AndroidAppSettings.cfg
|
||||
echo >> AndroidAppSettings.cfg
|
||||
fi
|
||||
|
||||
AppShortName=`echo $AppName | sed 's/ //g'`
|
||||
@@ -682,7 +685,7 @@ cd $JAVA_SRC_PATH
|
||||
for F in *.java; do
|
||||
echo Patching $F
|
||||
echo '// DO NOT EDIT THIS FILE - it is automatically generated, ALL YOUR CHANGES WILL BE OVERWRITTEN, edit the file under $JAVA_SRC_PATH dir' > ../src/$F
|
||||
cat $F | sed "s/package .*;/package $AppFullName;/" >> ../src/$F # | sed 's@$@ // THIS FILE IS AUTO-GENERATED@' >>
|
||||
cat $F | sed "s/^package .*;/package $AppFullName;/" >> ../src/$F # | sed 's@$@ // THIS FILE IS AUTO-GENERATED@' >>
|
||||
done
|
||||
|
||||
if [ -e ../jni/application/src/java.diff ]; then patch -d ../src --no-backup-if-mismatch < ../jni/application/src/java.diff || exit 1 ; fi
|
||||
@@ -710,9 +713,33 @@ else
|
||||
F=$JAVA_SRC_PATH/admob/Advertisement.java
|
||||
echo Patching $F
|
||||
echo '// DO NOT EDIT THIS FILE - it is automatically generated, edit file under $JAVA_SRC_PATH dir' > project/src/Advertisement.java
|
||||
cat $F | sed "s/package .*;/package $AppFullName;/" >> project/src/Advertisement.java
|
||||
cat $F | sed "s/^package .*;/package $AppFullName;/" >> project/src/Advertisement.java
|
||||
fi
|
||||
|
||||
if [ "$GooglePlayGameServicesId" = "n" -o -z "$GooglePlayGameServicesId" ] ; then
|
||||
$SEDI "/==GOOGLEPLAYGAMESERVICES==/ d" project/AndroidManifest.xml
|
||||
GooglePlayGameServicesId=""
|
||||
else
|
||||
for F in $JAVA_SRC_PATH/googleplaygameservices/*.java; do
|
||||
OUT=`echo $F | sed 's@.*/@@'` # basename tool is not available everywhere
|
||||
echo Patching $F
|
||||
echo '// DO NOT EDIT THIS FILE - it is automatically generated, edit file under $JAVA_SRC_PATH dir' > project/src/$OUT
|
||||
cat $F | sed "s/^package .*;/package $AppFullName;/" >> project/src/$OUT
|
||||
done
|
||||
$SEDI "s/==GOOGLEPLAYGAMESERVICES_APP_ID==/$GooglePlayGameServicesId/g" project/AndroidManifest.xml
|
||||
SDK_DIR=`grep '^sdk.dir' project/local.properties | sed 's/.*=//'`
|
||||
grep 'android.library.reference.1' project/local.properties > /dev/null || {
|
||||
# Ant is way too smart, and adds current project path in front of the ${sdk.dir}
|
||||
echo 'android.library.reference.1=../../../../../../../../../../../../../../${sdk.dir}/extras/google/google_play_services/libproject/google-play-services_lib' >> project/local.properties
|
||||
echo 'proguard.config=proguard.cfg' >> project/local.properties
|
||||
ln -s -f $SDK_DIR/extras/android/compatibility/v4/android-support-v4.jar project/libs
|
||||
}
|
||||
[ -e $SDK_DIR/extras/google/google_play_services/libproject/google-play-services_lib/build.xml ] || \
|
||||
android update project -p $SDK_DIR/extras/google/google_play_services/libproject/google-play-services_lib
|
||||
fi
|
||||
|
||||
echo "-keep class $AppFullName.** { *; }" > project/proguard-local.cfg
|
||||
|
||||
if [ "$AppRecordsAudio" = "n" -o -z "$AppRecordsAudio" ] ; then
|
||||
$SEDI "/==RECORD_AUDIO==/ d" project/AndroidManifest.xml
|
||||
fi
|
||||
@@ -803,6 +830,7 @@ $SEDI "s%public static String CommandLine = .*%public static String CommandLine
|
||||
$SEDI "s%public static String AdmobPublisherId = .*%public static String AdmobPublisherId = \"$AdmobPublisherId\";%" project/src/Globals.java
|
||||
$SEDI "s/public static String AdmobTestDeviceId = .*/public static String AdmobTestDeviceId = \"$AdmobTestDeviceId\";/" project/src/Globals.java
|
||||
$SEDI "s/public static String AdmobBannerSize = .*/public static String AdmobBannerSize = \"$AdmobBannerSize\";/" project/src/Globals.java
|
||||
$SEDI "s%public static String GooglePlayGameServicesId = .*%public static String GooglePlayGameServicesId = \"$GooglePlayGameServicesId\";%" project/src/Globals.java
|
||||
$SEDI "s/public static String AppLibraries.*/public static String AppLibraries[] = { $LibrariesToLoad };/" project/src/Globals.java
|
||||
$SEDI "s/public static String AppMainLibraries.*/public static String AppMainLibraries[] = { $MainLibrariesToLoad };/" project/src/Globals.java
|
||||
|
||||
|
||||
@@ -1,43 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.package.name"
|
||||
android:versionCode="100"
|
||||
android:versionName="1.0.0"
|
||||
android:installLocation="auto"
|
||||
package="com.package.name"
|
||||
android:versionCode="100"
|
||||
android:versionName="1.0.0"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<application android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:debuggable="true"
|
||||
>
|
||||
<activity android:name=".MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:alwaysRetainTaskState="true"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|screenSize|smallestScreenSize"
|
||||
android:windowSoftInputMode="stateUnspecified|adjustPan"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="tv.ouya.intent.category.GAME" />
|
||||
<action android:name="com.sec.android.airview.HOVER" /> <!-- Stupid Samsung requires their own intent for finger-hover events -->
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- ==ADMOB== --> <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|screenSize|smallestScreenSize"/>
|
||||
<!-- ==ADMOB== --> <meta-data android:name="com.google.android.gms.version" android:value="4323000" /> <!-- Change this value to the actual Google Play SDK version -->
|
||||
</application>
|
||||
<application android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:debuggable="true"
|
||||
android:allowBackup="true"
|
||||
>
|
||||
<activity android:name=".MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:alwaysRetainTaskState="true"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|screenSize|smallestScreenSize"
|
||||
android:windowSoftInputMode="stateUnspecified|adjustPan"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="tv.ouya.intent.category.GAME" />
|
||||
<action android:name="com.sec.android.airview.HOVER" /> <!-- Stupid Samsung requires their own intent for finger-hover events -->
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- ==ADMOB== --> <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|screenSize|smallestScreenSize"/>
|
||||
<!-- ==ADMOB== --> <meta-data android:name="com.google.android.gms.version" android:value="4323000" /> <!-- Change this value to the actual Google Play SDK version -->
|
||||
<!-- ==GOOGLEPLAYGAMESERVICES== --> <meta-data android:name="com.google.android.gms.games.APP_ID" android:value="==GOOGLEPLAYGAMESERVICES_APP_ID==" />
|
||||
<!-- ==GOOGLEPLAYGAMESERVICES== --> <meta-data android:name="com.google.android.gms.appstate.APP_ID" android:value="==GOOGLEPLAYGAMESERVICES_APP_ID==" />
|
||||
<!-- ==GOOGLEPLAYGAMESERVICES== --> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
|
||||
</application>
|
||||
|
||||
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="19"/>
|
||||
<!-- ==INTERNET== --> <uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
||||
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
|
||||
<!-- ==RECORD_AUDIO== --> <uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
|
||||
<!-- ==ADMOB== --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
|
||||
<!-- <uses-permission android:name="android.permission.VIBRATE"></uses-permission> --> <!-- Vibrator not supported yet by SDL -->
|
||||
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="19"/>
|
||||
<!-- ==INTERNET== --> <uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
||||
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
|
||||
<!-- ==RECORD_AUDIO== --> <uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
|
||||
<!-- ==ADMOB== --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
|
||||
|
||||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <!-- Allow TV boxes -->
|
||||
<!-- ==SCREEN-SIZE-SMALL== --> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
<!-- ==SCREEN-SIZE-NORMAL== --> <supports-screens android:smallScreens="false" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
<!-- ==SCREEN-SIZE-LARGE== --> <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
<!-- <uses-permission android:name="android.permission.VIBRATE"></uses-permission> --> <!-- Vibrator not supported yet by SDL -->
|
||||
|
||||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <!-- Allow TV boxes -->
|
||||
<!-- ==SCREEN-SIZE-SMALL== --> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
<!-- ==SCREEN-SIZE-NORMAL== --> <supports-screens android:smallScreens="false" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
<!-- ==SCREEN-SIZE-LARGE== --> <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" />
|
||||
|
||||
</manifest>
|
||||
|
||||
42
project/java/CloudSave.java
Normal file
42
project/java/CloudSave.java
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
Simple DirectMedia Layer
|
||||
Java source code (C) 2009-2014 Sergii Pylypenko
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
*/
|
||||
|
||||
package net.sourceforge.clonekeenplus;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
|
||||
// Stub class for compiling without cloud save support
|
||||
class CloudSave
|
||||
{
|
||||
public CloudSave(MainActivity p)
|
||||
{
|
||||
}
|
||||
|
||||
public void onStart() {
|
||||
}
|
||||
|
||||
public void onStop() {
|
||||
}
|
||||
|
||||
public void onActivityResult(int request, int response, Intent data) {
|
||||
}
|
||||
}
|
||||
@@ -73,6 +73,7 @@ class Globals
|
||||
public static String AdmobPublisherId = "";
|
||||
public static String AdmobTestDeviceId = "";
|
||||
public static String AdmobBannerSize = "";
|
||||
public static String GooglePlayGameServicesId = "";
|
||||
|
||||
// Phone-specific config, modified by user in "Change phone config" startup dialog
|
||||
public static int VideoDepthBpp = 16;
|
||||
|
||||
@@ -220,6 +220,7 @@ public class MainActivity extends Activity
|
||||
Intent intent = new Intent(this, DummyService.class);
|
||||
startService(intent);
|
||||
}
|
||||
_cloudSave = new CloudSave(this);
|
||||
}
|
||||
|
||||
public void setUpStatusLabel()
|
||||
@@ -425,6 +426,24 @@ public class MainActivity extends Activity
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStart() {
|
||||
super.onStart();
|
||||
_cloudSave.onStart();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStop() {
|
||||
super.onStart();
|
||||
_cloudSave.onStop();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityResult(int request, int response, Intent data) {
|
||||
super.onActivityResult(request, response, data);
|
||||
_cloudSave.onActivityResult(request, response, data);
|
||||
}
|
||||
|
||||
public void showScreenKeyboardWithoutTextInputField()
|
||||
{
|
||||
if( !keyboardWithoutTextInputShown )
|
||||
@@ -1216,6 +1235,7 @@ public class MainActivity extends Activity
|
||||
private LinearLayout _layout = null;
|
||||
private LinearLayout _layout2 = null;
|
||||
private Advertisement _ad = null;
|
||||
public CloudSave _cloudSave = null;
|
||||
|
||||
private FrameLayout _videoLayout = null;
|
||||
private EditText _screenKeyboard = null;
|
||||
|
||||
169
project/java/googleplaygameservices/CloudSave.java
Normal file
169
project/java/googleplaygameservices/CloudSave.java
Normal file
@@ -0,0 +1,169 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.example.games.basegameutils;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
|
||||
import com.google.android.gms.common.api.GoogleApiClient;
|
||||
|
||||
/**
|
||||
* Example base class for games. This implementation takes care of setting up
|
||||
* the API client object and managing its lifecycle. Subclasses only need to
|
||||
* override the @link{#onSignInSucceeded} and @link{#onSignInFailed} abstract
|
||||
* methods. To initiate the sign-in flow when the user clicks the sign-in
|
||||
* button, subclasses should call @link{#beginUserInitiatedSignIn}. By default,
|
||||
* this class only instantiates the GoogleApiClient object. If the PlusClient or
|
||||
* AppStateClient objects are also wanted, call the BaseGameActivity(int)
|
||||
* constructor and specify the requested clients. For example, to request
|
||||
* PlusClient and GamesClient, use BaseGameActivity(CLIENT_GAMES | CLIENT_PLUS).
|
||||
* To request all available clients, use BaseGameActivity(CLIENT_ALL).
|
||||
* Alternatively, you can also specify the requested clients via
|
||||
* @link{#setRequestedClients}, but you must do so before @link{#onCreate}
|
||||
* gets called, otherwise the call will have no effect.
|
||||
*
|
||||
* @author Bruno Oliveira (Google)
|
||||
*/
|
||||
public class CloudSave implements GameHelper.GameHelperListener {
|
||||
|
||||
// The game helper object. This class is mainly a wrapper around this object.
|
||||
protected GameHelper mHelper;
|
||||
|
||||
// We expose these constants here because we don't want users of this class
|
||||
// to have to know about GameHelper at all.
|
||||
public static final int CLIENT_GAMES = GameHelper.CLIENT_GAMES;
|
||||
public static final int CLIENT_APPSTATE = GameHelper.CLIENT_APPSTATE;
|
||||
public static final int CLIENT_PLUS = GameHelper.CLIENT_PLUS;
|
||||
public static final int CLIENT_ALL = GameHelper.CLIENT_ALL;
|
||||
|
||||
// Requested clients. By default, that's just the games client.
|
||||
public int mRequestedClients = CLIENT_GAMES;
|
||||
|
||||
private final static String TAG = "BaseGameActivity";
|
||||
public boolean mDebugLog = false;
|
||||
|
||||
MainActivity parent;
|
||||
|
||||
/** Constructs a BaseGameActivity with default client (GamesClient). */
|
||||
public CloudSave(MainActivity p)
|
||||
{
|
||||
parent = p;
|
||||
setRequestedClients(CLIENT_GAMES);
|
||||
getGameHelper().setup(this);
|
||||
/*
|
||||
// Add the Drive API and scope to the builder:
|
||||
GoogleApiClient.Builder builder = helper.getApiClientBuilder();
|
||||
GoogleApiClient.Builder builder = new GoogleApiClient.Builder(parent, this, this);
|
||||
builder.addScope(Drive.SCOPE_APPFOLDER);
|
||||
builder.addApi(Drive.API);
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the requested clients. The preferred way to set the requested clients is
|
||||
* via the constructor, but this method is available if for some reason your code
|
||||
* cannot do this in the constructor. This must be called before onCreate or getGameHelper()
|
||||
* in order to have any effect. If called after onCreate()/getGameHelper(), this method
|
||||
* is a no-op.
|
||||
*
|
||||
* @param requestedClients A combination of the flags CLIENT_GAMES, CLIENT_PLUS
|
||||
* and CLIENT_APPSTATE, or CLIENT_ALL to request all available clients.
|
||||
*/
|
||||
public void setRequestedClients(int requestedClients) {
|
||||
mRequestedClients = requestedClients;
|
||||
}
|
||||
|
||||
public GameHelper getGameHelper() {
|
||||
if (mHelper == null) {
|
||||
mHelper = new GameHelper(parent, mRequestedClients);
|
||||
mHelper.enableDebugLog(mDebugLog);
|
||||
}
|
||||
return mHelper;
|
||||
}
|
||||
|
||||
public void onStart() {
|
||||
mHelper.onStart(parent);
|
||||
}
|
||||
|
||||
public void onStop() {
|
||||
mHelper.onStop();
|
||||
}
|
||||
|
||||
public void onActivityResult(int request, int response, Intent data) {
|
||||
mHelper.onActivityResult(request, response, data);
|
||||
}
|
||||
|
||||
public void onSignInSucceeded() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
public void onSignInFailed() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
public GoogleApiClient getApiClient() {
|
||||
return mHelper.getApiClient();
|
||||
}
|
||||
|
||||
public boolean isSignedIn() {
|
||||
return mHelper.isSignedIn();
|
||||
}
|
||||
|
||||
public void beginUserInitiatedSignIn() {
|
||||
mHelper.beginUserInitiatedSignIn();
|
||||
}
|
||||
|
||||
public void signOut() {
|
||||
mHelper.signOut();
|
||||
}
|
||||
|
||||
public void showAlert(String message) {
|
||||
mHelper.makeSimpleDialog(message).show();
|
||||
}
|
||||
|
||||
public void showAlert(String title, String message) {
|
||||
mHelper.makeSimpleDialog(title, message).show();
|
||||
}
|
||||
|
||||
public void enableDebugLog(boolean enabled) {
|
||||
mDebugLog = true;
|
||||
if (mHelper != null) {
|
||||
mHelper.enableDebugLog(enabled);
|
||||
}
|
||||
}
|
||||
|
||||
public void enableDebugLog(boolean enabled, String tag) {
|
||||
enableDebugLog(enabled);
|
||||
}
|
||||
|
||||
public String getInvitationId() {
|
||||
return mHelper.getInvitationId();
|
||||
}
|
||||
|
||||
public void reconnectClient() {
|
||||
mHelper.reconnectClient();
|
||||
}
|
||||
|
||||
public boolean hasSignInError() {
|
||||
return mHelper.hasSignInError();
|
||||
}
|
||||
|
||||
public GameHelper.SignInFailureReason getSignInError() {
|
||||
return mHelper.getSignInError();
|
||||
}
|
||||
}
|
||||
1066
project/java/googleplaygameservices/GameHelper.java
Normal file
1066
project/java/googleplaygameservices/GameHelper.java
Normal file
File diff suppressed because it is too large
Load Diff
182
project/java/googleplaygameservices/GameHelperUtils.java
Normal file
182
project/java/googleplaygameservices/GameHelperUtils.java
Normal file
@@ -0,0 +1,182 @@
|
||||
package com.google.example.games.basegameutils;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.content.pm.Signature;
|
||||
import android.content.res.Resources;
|
||||
import android.util.Log;
|
||||
|
||||
import com.google.android.gms.common.ConnectionResult;
|
||||
import com.google.android.gms.games.GamesActivityResultCodes;
|
||||
|
||||
import java.security.MessageDigest;
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
|
||||
/**
|
||||
* Created by btco on 2/10/14.
|
||||
*/
|
||||
class GameHelperUtils {
|
||||
public static final int R_UNKNOWN_ERROR = 0;
|
||||
public static final int R_SIGN_IN_FAILED = 1;
|
||||
public static final int R_APP_MISCONFIGURED = 2;
|
||||
public static final int R_LICENSE_FAILED = 3;
|
||||
|
||||
private final static String[] FALLBACK_STRINGS = {
|
||||
"*Unknown error.",
|
||||
"*Failed to sign in. Please check your network connection and try again.",
|
||||
"*The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to sign in with is listed as a tester account. See logs for more information.",
|
||||
"*License check failed."
|
||||
};
|
||||
|
||||
private final static int[] RES_IDS = {
|
||||
R.string.gamehelper_unknown_error, R.string.gamehelper_sign_in_failed,
|
||||
R.string.gamehelper_app_misconfigured, R.string.gamehelper_license_failed
|
||||
};
|
||||
|
||||
static String activityResponseCodeToString(int respCode) {
|
||||
switch (respCode) {
|
||||
case Activity.RESULT_OK:
|
||||
return "RESULT_OK";
|
||||
case Activity.RESULT_CANCELED:
|
||||
return "RESULT_CANCELED";
|
||||
case GamesActivityResultCodes.RESULT_APP_MISCONFIGURED:
|
||||
return "RESULT_APP_MISCONFIGURED";
|
||||
case GamesActivityResultCodes.RESULT_LEFT_ROOM:
|
||||
return "RESULT_LEFT_ROOM";
|
||||
case GamesActivityResultCodes.RESULT_LICENSE_FAILED:
|
||||
return "RESULT_LICENSE_FAILED";
|
||||
case GamesActivityResultCodes.RESULT_RECONNECT_REQUIRED:
|
||||
return "RESULT_RECONNECT_REQUIRED";
|
||||
case GamesActivityResultCodes.RESULT_SIGN_IN_FAILED:
|
||||
return "SIGN_IN_FAILED";
|
||||
default:
|
||||
return String.valueOf(respCode);
|
||||
}
|
||||
}
|
||||
|
||||
static String errorCodeToString(int errorCode) {
|
||||
switch (errorCode) {
|
||||
case ConnectionResult.DEVELOPER_ERROR:
|
||||
return "DEVELOPER_ERROR(" + errorCode + ")";
|
||||
case ConnectionResult.INTERNAL_ERROR:
|
||||
return "INTERNAL_ERROR(" + errorCode + ")";
|
||||
case ConnectionResult.INVALID_ACCOUNT:
|
||||
return "INVALID_ACCOUNT(" + errorCode + ")";
|
||||
case ConnectionResult.LICENSE_CHECK_FAILED:
|
||||
return "LICENSE_CHECK_FAILED(" + errorCode + ")";
|
||||
case ConnectionResult.NETWORK_ERROR:
|
||||
return "NETWORK_ERROR(" + errorCode + ")";
|
||||
case ConnectionResult.RESOLUTION_REQUIRED:
|
||||
return "RESOLUTION_REQUIRED(" + errorCode + ")";
|
||||
case ConnectionResult.SERVICE_DISABLED:
|
||||
return "SERVICE_DISABLED(" + errorCode + ")";
|
||||
case ConnectionResult.SERVICE_INVALID:
|
||||
return "SERVICE_INVALID(" + errorCode + ")";
|
||||
case ConnectionResult.SERVICE_MISSING:
|
||||
return "SERVICE_MISSING(" + errorCode + ")";
|
||||
case ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED:
|
||||
return "SERVICE_VERSION_UPDATE_REQUIRED(" + errorCode + ")";
|
||||
case ConnectionResult.SIGN_IN_REQUIRED:
|
||||
return "SIGN_IN_REQUIRED(" + errorCode + ")";
|
||||
case ConnectionResult.SUCCESS:
|
||||
return "SUCCESS(" + errorCode + ")";
|
||||
default:
|
||||
return "Unknown error code " + errorCode;
|
||||
}
|
||||
}
|
||||
|
||||
static void printMisconfiguredDebugInfo(Context ctx) {
|
||||
Log.w("GameHelper", "****");
|
||||
Log.w("GameHelper", "****");
|
||||
Log.w("GameHelper", "**** APP NOT CORRECTLY CONFIGURED TO USE GOOGLE PLAY GAME SERVICES");
|
||||
Log.w("GameHelper", "**** This is usually caused by one of these reasons:");
|
||||
Log.w("GameHelper", "**** (1) Your package name and certificate fingerprint do not match");
|
||||
Log.w("GameHelper", "**** the client ID you registered in Developer Console.");
|
||||
Log.w("GameHelper", "**** (2) Your App ID was incorrectly entered.");
|
||||
Log.w("GameHelper", "**** (3) Your game settings have not been published and you are ");
|
||||
Log.w("GameHelper", "**** trying to log in with an account that is not listed as");
|
||||
Log.w("GameHelper", "**** a test account.");
|
||||
Log.w("GameHelper", "****");
|
||||
if (ctx == null) {
|
||||
Log.w("GameHelper", "*** (no Context, so can't print more debug info)");
|
||||
return;
|
||||
}
|
||||
|
||||
Log.w("GameHelper", "**** To help you debug, here is the information about this app");
|
||||
Log.w("GameHelper", "**** Package name : " + ctx.getPackageName());
|
||||
Log.w("GameHelper", "**** Cert SHA1 fingerprint: " + getSHA1CertFingerprint(ctx));
|
||||
Log.w("GameHelper", "**** App ID from : " + getAppIdFromResource(ctx));
|
||||
Log.w("GameHelper", "****");
|
||||
Log.w("GameHelper", "**** Check that the above information matches your setup in ");
|
||||
Log.w("GameHelper", "**** Developer Console. Also, check that you're logging in with the");
|
||||
Log.w("GameHelper", "**** right account (it should be listed in the Testers section if");
|
||||
Log.w("GameHelper", "**** your project is not yet published).");
|
||||
Log.w("GameHelper", "****");
|
||||
Log.w("GameHelper", "**** For more information, refer to the troubleshooting guide:");
|
||||
Log.w("GameHelper", "**** http://developers.google.com/games/services/android/troubleshooting");
|
||||
}
|
||||
|
||||
static String getAppIdFromResource(Context ctx) {
|
||||
try {
|
||||
Resources res = ctx.getResources();
|
||||
String pkgName = ctx.getPackageName();
|
||||
int res_id = res.getIdentifier("app_id", "string", pkgName);
|
||||
return res.getString(res_id);
|
||||
} catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
return "??? (failed to retrieve APP ID)";
|
||||
}
|
||||
}
|
||||
|
||||
static String getSHA1CertFingerprint(Context ctx) {
|
||||
try {
|
||||
Signature[] sigs = ctx.getPackageManager().getPackageInfo(
|
||||
ctx.getPackageName(), PackageManager.GET_SIGNATURES).signatures;
|
||||
if (sigs.length == 0) {
|
||||
return "ERROR: NO SIGNATURE.";
|
||||
} else if (sigs.length > 1) {
|
||||
return "ERROR: MULTIPLE SIGNATURES";
|
||||
}
|
||||
byte[] digest = MessageDigest.getInstance("SHA1").digest(sigs[0].toByteArray());
|
||||
StringBuilder hexString = new StringBuilder();
|
||||
for (int i = 0; i < digest.length; ++i) {
|
||||
if (i > 0) {
|
||||
hexString.append(":");
|
||||
}
|
||||
byteToString(hexString, digest[i]);
|
||||
}
|
||||
return hexString.toString();
|
||||
|
||||
} catch (PackageManager.NameNotFoundException ex) {
|
||||
ex.printStackTrace();
|
||||
return "(ERROR: package not found)";
|
||||
} catch (NoSuchAlgorithmException ex) {
|
||||
ex.printStackTrace();
|
||||
return "(ERROR: SHA1 algorithm not found)";
|
||||
}
|
||||
}
|
||||
|
||||
static void byteToString(StringBuilder sb, byte b) {
|
||||
int unsigned_byte = b < 0 ? b + 256 : b;
|
||||
int hi = unsigned_byte / 16;
|
||||
int lo = unsigned_byte % 16;
|
||||
sb.append("0123456789ABCDEF".substring(hi, hi + 1));
|
||||
sb.append("0123456789ABCDEF".substring(lo, lo + 1));
|
||||
}
|
||||
|
||||
static String getString(Context ctx, int whichString) {
|
||||
whichString = whichString >= 0 && whichString < RES_IDS.length ? whichString : 0;
|
||||
int resId = RES_IDS[whichString];
|
||||
try {
|
||||
return ctx.getString(resId);
|
||||
} catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
Log.w(GameHelper.TAG, "*** GameHelper could not found resource id #" + resId + ". " +
|
||||
"This probably happened because you included it as a stand-alone JAR. " +
|
||||
"BaseGameUtils should be compiled as a LIBRARY PROJECT, so that it can access " +
|
||||
"its resources. Using a fallback string.");
|
||||
return FALLBACK_STRINGS[whichString];
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -176,4 +176,16 @@
|
||||
<string name="mouse_hover_jitter_filter">Filter jitter for stylus/finger hover</string>
|
||||
<string name="remap_hwkeys_select_simple">Select action</string>
|
||||
<string name="remap_hwkeys_select_more_keys">Show all keycodes</string>
|
||||
<string name="mouse_gyroscope_mouse">Control mouse with gyroscope</string>
|
||||
<string name="mouse_gyroscope_mouse_sensitivity">Gyroscope sensitivity</string>
|
||||
<string name="mouse_finger_hover">Finger hover</string>
|
||||
<string name="mouse_subframe_touch_events">Multiple touch events per video frame</string>
|
||||
<string name="screenkb_floating_joystick">Floating joystick</string>
|
||||
<string name="video_orientation_vertical">Portrait/vertical screen orientation</string>
|
||||
<string name="video_bpp_24">24 bpp screen color depth</string>
|
||||
<string name="video_immersive">Hide system navigation buttons / immersive mode</string>
|
||||
<string name="gamehelper_sign_in_failed">Failed to sign in. Please check your network connection and try again.</string>
|
||||
<string name="gamehelper_app_misconfigured">The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to sign in with is listed as a tester account. See logs for more information.</string>
|
||||
<string name="gamehelper_license_failed">License check failed.</string>
|
||||
<string name="gamehelper_unknown_error">Unknown error.</string>
|
||||
</resources>
|
||||
|
||||
@@ -149,4 +149,16 @@
|
||||
<string name="mouse_hover_jitter_filter">Фильтровать дрожание при поднесении стилуса/пальца к экрану</string>
|
||||
<string name="remap_hwkeys_select_simple">Выберите действие</string>
|
||||
<string name="remap_hwkeys_select_more_keys">Показать все коды кнопок</string>
|
||||
<string name="mouse_gyroscope_mouse">Control mouse with gyroscope</string>
|
||||
<string name="mouse_gyroscope_mouse_sensitivity">Gyroscope sensitivity</string>
|
||||
<string name="mouse_finger_hover">Finger hover</string>
|
||||
<string name="mouse_subframe_touch_events">Multiple touch events per video frame</string>
|
||||
<string name="screenkb_floating_joystick">Floating joystick</string>
|
||||
<string name="video_orientation_vertical">Portrait/vertical screen orientation</string>
|
||||
<string name="video_bpp_24">24 bpp screen color depth</string>
|
||||
<string name="video_immersive">Hide system navigation buttons / immersive mode</string>
|
||||
<string name="gamehelper_sign_in_failed">Failed to sign in. Please check your network connection and try again.</string>
|
||||
<string name="gamehelper_app_misconfigured">The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to sign in with is listed as a tester account. See logs for more information.</string>
|
||||
<string name="gamehelper_license_failed">License check failed.</string>
|
||||
<string name="gamehelper_unknown_error">Unknown error.</string>
|
||||
</resources>
|
||||
|
||||
@@ -148,4 +148,16 @@
|
||||
<string name="mouse_hover_jitter_filter">Фільтрувати тремтіння при піднесенні стилуса/пальця до екрану</string>
|
||||
<string name="remap_hwkeys_select_simple">Виберіть дію</string>
|
||||
<string name="remap_hwkeys_select_more_keys">Показати всі коди кнопок</string>
|
||||
<string name="mouse_gyroscope_mouse">Control mouse with gyroscope</string>
|
||||
<string name="mouse_gyroscope_mouse_sensitivity">Gyroscope sensitivity</string>
|
||||
<string name="mouse_finger_hover">Finger hover</string>
|
||||
<string name="mouse_subframe_touch_events">Multiple touch events per video frame</string>
|
||||
<string name="screenkb_floating_joystick">Floating joystick</string>
|
||||
<string name="video_orientation_vertical">Portrait/vertical screen orientation</string>
|
||||
<string name="video_bpp_24">24 bpp screen color depth</string>
|
||||
<string name="video_immersive">Hide system navigation buttons / immersive mode</string>
|
||||
<string name="gamehelper_sign_in_failed">Failed to sign in. Please check your network connection and try again.</string>
|
||||
<string name="gamehelper_app_misconfigured">The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to sign in with is listed as a tester account. See logs for more information.</string>
|
||||
<string name="gamehelper_license_failed">License check failed.</string>
|
||||
<string name="gamehelper_unknown_error">Unknown error.</string>
|
||||
</resources>
|
||||
|
||||
@@ -187,4 +187,10 @@
|
||||
<string name="yes">Yes</string>
|
||||
<string name="no">No</string>
|
||||
|
||||
<!-- Play Game Services strings -->
|
||||
<string name="gamehelper_sign_in_failed">Failed to sign in. Please check your network connection and try again.</string>
|
||||
<string name="gamehelper_app_misconfigured">The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console. Also, if the application is not yet published, check that the account you are trying to sign in with is listed as a tester account. See logs for more information.</string>
|
||||
<string name="gamehelper_license_failed">License check failed.</string>
|
||||
<string name="gamehelper_unknown_error">Unknown error.</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -1,21 +1,16 @@
|
||||
# The application settings for Android libSDL port
|
||||
|
||||
AppSettingVersion=19
|
||||
|
||||
# libSDL version to use (1.2 or 1.3, specify 1.3 for SDL2)
|
||||
LibSdlVersion=1.2
|
||||
|
||||
# Specify application name (e.x. My Application)
|
||||
AppName="Biniax2"
|
||||
|
||||
# Specify reversed site name of application (e.x. com.mysite.myapp)
|
||||
AppFullName=com.biniax.sdl
|
||||
|
||||
# Specify screen orientation: (v)ertical/(p)ortrait or (h)orizontal/(l)andscape
|
||||
ScreenOrientation=h
|
||||
# Application version code (integer)
|
||||
AppVersionCode=1405
|
||||
|
||||
# Do not allow device to sleep when the application is in foreground, set this for video players or apps which use accelerometer
|
||||
InhibitSuspend=y
|
||||
# Application user-visible version name (string)
|
||||
AppVersionName="1.4.05"
|
||||
|
||||
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
|
||||
# If you'll start Description with '!' symbol it will be enabled by default, other downloads should be selected by user from startup config menu
|
||||
@@ -25,6 +20,22 @@ InhibitSuspend=y
|
||||
# Also please avoid 'https://' URLs, many Android devices do not have trust certificates and will fail to connect to SF.net over HTTPS
|
||||
AppDataDownloadUrl="!Game data|data3.zip"
|
||||
|
||||
# Reset SDL config when updating application to the new version (y) / (n)
|
||||
ResetSdlConfigForThisVersion=n
|
||||
|
||||
# Delete application data files when upgrading (specify file/dir paths separated by spaces)
|
||||
DeleteFilesOnUpgrade="%"
|
||||
|
||||
# Here you may type readme text, which will be shown during startup. Format is:
|
||||
# Text in English, use \\\\n to separate lines (that's four backslashes)^de:Text in Deutsch^ru:Text in Russian^button:Button that will open some URL:http://url-to-open/
|
||||
ReadmeText='^.'
|
||||
|
||||
# libSDL version to use (1.2/1.3/2.0)
|
||||
LibSdlVersion=1.2
|
||||
|
||||
# Specify screen orientation: (v)ertical/(p)ortrait or (h)orizontal/(l)andscape
|
||||
ScreenOrientation=h
|
||||
|
||||
# Video color depth - 16 BPP is the fastest and supported for all modes, 24 bpp is supported only
|
||||
# with SwVideoMode=y, SDL_OPENGL mode supports everything. (16)/(24)/(32)
|
||||
VideoDepthBpp=16
|
||||
@@ -49,9 +60,19 @@ SdlVideoResize=y
|
||||
# Application resizing will keep 4:3 aspect ratio, with black bars at sides (y)/(n)
|
||||
SdlVideoResizeKeepAspect=n
|
||||
|
||||
# Do not allow device to sleep when the application is in foreground, set this for video players or apps which use accelerometer
|
||||
InhibitSuspend=y
|
||||
|
||||
# Create Android service, so the app is less likely to be killed while in background
|
||||
CreateService=
|
||||
|
||||
# Application does not call SDL_Flip() or SDL_UpdateRects() appropriately, or draws from non-main thread -
|
||||
# enabling the compatibility mode will force screen update every 100 milliseconds, which is laggy and inefficient (y) or (n)
|
||||
CompatibilityHacks=n
|
||||
CompatibilityHacksForceScreenUpdate=n
|
||||
|
||||
# Application does not call SDL_Flip() or SDL_UpdateRects() after mouse click (ScummVM and all Amiga emulators do that) -
|
||||
# force screen update by moving mouse cursor a little after each click (y) or (n)
|
||||
CompatibilityHacksForceScreenUpdateMouseClick=y
|
||||
|
||||
# Application initializes SDL audio/video inside static constructors (which is bad, you won't be able to run ndk-gdb) (y)/(n)
|
||||
CompatibilityHacksStaticInit=n
|
||||
@@ -85,6 +106,10 @@ AppUsesMouse=y
|
||||
# Application needs two-button mouse, will also enable advanced point-and-click features (y) or (n)
|
||||
AppNeedsTwoButtonMouse=n
|
||||
|
||||
# Right mouse button can do long-press/drag&drop action, necessary for some games (y) or (n)
|
||||
# If you disable it, swiping with two fingers will send mouse wheel events
|
||||
RightMouseButtonLongPress=
|
||||
|
||||
# Show SDL mouse cursor, for applications that do not draw cursor at all (y) or (n)
|
||||
ShowMouseCursor=n
|
||||
|
||||
@@ -94,24 +119,35 @@ GenerateSubframeTouchEvents=
|
||||
# Force relative (laptop) mouse movement mode, useful when both on-screen keyboard and mouse are needed (y) or (n)
|
||||
ForceRelativeMouseMode=n
|
||||
|
||||
# Application needs arrow keys (y) or (n), will show on-screen dpad/joystick (y) or (n)
|
||||
# Show on-screen dpad/joystick, that will act as arrow keys (y) or (n)
|
||||
AppNeedsArrowKeys=n
|
||||
|
||||
# On-screen dpad/joystick will appear under finger when it touches the screen (y) or (n)
|
||||
# Joystick always follows finger, so moving mouse requires touching the screen with other finger
|
||||
FloatingScreenJoystick=
|
||||
|
||||
# Application needs text input (y) or (n), enables button for text input on screen
|
||||
AppNeedsTextInput=n
|
||||
|
||||
# Application uses joystick (y) or (n), the on-screen DPAD will be used as joystick 0 axes 0-1
|
||||
# This will disable AppNeedsArrowKeys option
|
||||
AppUsesJoystick=n
|
||||
|
||||
# Application uses second on-screen joystick, as SDL joystick 0 axes 2-3 (y)/(n)
|
||||
AppUsesSecondJoystick=n
|
||||
|
||||
# Application uses third on-screen joystick, as SDL joystick 0 axes 20-21 (y)/(n)
|
||||
AppUsesThirdJoystick=
|
||||
|
||||
# Application uses accelerometer (y) or (n), the accelerometer will be used as joystick 1 axes 0-1 and 5-7
|
||||
AppUsesAccelerometer=n
|
||||
|
||||
# Application uses gyroscope (y) or (n), the gyroscope will be used as joystick 1 axes 2-4
|
||||
AppUsesGyroscope=n
|
||||
|
||||
# Use gyroscope to move mouse cursor (y) or (n), it eats battery, and can be disabled in settings, do not use with AppUsesGyroscope setting
|
||||
MoveMouseWithGyroscope=
|
||||
|
||||
# Application uses multitouch (y) or (n), multitouch events are passed as SDL_JOYBALLMOTION events for the joystick 0
|
||||
AppUsesMultitouch=n
|
||||
|
||||
@@ -120,6 +156,15 @@ AppUsesMultitouch=n
|
||||
# This option will add additional permission to Android manifest (y)/(n)
|
||||
AppRecordsAudio=n
|
||||
|
||||
# Application needs to access SD card. If your data files are bigger than 5 Mb, enable it. (y) / (n)
|
||||
AccessSdCard=
|
||||
|
||||
# Application needs Internet access. If you disable it, you'll have to bundle all your data files inside .apk (y) / (n)
|
||||
AccessInternet=
|
||||
|
||||
# Immersive mode - Android will hide on-screen Home/Back keys. Looks bad if you invoke Android keyboard. (y) / (n)
|
||||
ImmersiveMode=
|
||||
|
||||
# Application implements Android-specific routines to put to background, and will not draw anything to screen
|
||||
# between SDL_ACTIVEEVENT lost / gained notifications - you should check for them
|
||||
# rigth after SDL_Flip(), if (n) then SDL_Flip() will block till app in background (y) or (n)
|
||||
@@ -136,9 +181,6 @@ RedefinedKeys="RETURN"
|
||||
# Number of virtual keyboard keys (currently 6 is maximum)
|
||||
AppTouchscreenKeyboardKeysAmount=0
|
||||
|
||||
# Number of virtual keyboard keys that support autofire (currently 2 is maximum)
|
||||
AppTouchscreenKeyboardKeysAmountAutoFire=0
|
||||
|
||||
# Redefine on-screen keyboard keys to SDL keysyms - 6 keyboard keys + 4 multitouch gestures (zoom in/out and rotate left/right)
|
||||
RedefinedKeysScreenKb="RETURN SPACE"
|
||||
|
||||
@@ -160,34 +202,22 @@ RedefinedKeysGamepad="RETURN ESCAPE SPACE SPACE"
|
||||
StartupMenuButtonTimeout=0
|
||||
|
||||
# Menu items to hide from startup menu, available menu items:
|
||||
# SettingsMenu.OkButton SettingsMenu.DummyMenu SettingsMenu.MainMenu SettingsMenuMisc.DownloadConfig SettingsMenuMisc.OptionalDownloadConfig SettingsMenuMisc.AudioConfig SettingsMenuMisc.VideoSettingsConfig SettingsMenuMisc.ShowReadme SettingsMenuMisc.GyroscopeCalibration SettingsMenuMisc.ResetToDefaultsConfig SettingsMenuMouse.MouseConfigMainMenu SettingsMenuMouse.DisplaySizeConfig SettingsMenuMouse.LeftClickConfig SettingsMenuMouse.RightClickConfig SettingsMenuMouse.AdditionalMouseConfig SettingsMenuMouse.JoystickMouseConfig SettingsMenuMouse.TouchPressureMeasurementTool SettingsMenuMouse.CalibrateTouchscreenMenu SettingsMenuKeyboard.KeyboardConfigMainMenu SettingsMenuKeyboard.ScreenKeyboardSizeConfig SettingsMenuKeyboard.ScreenKeyboardDrawSizeConfig SettingsMenuKeyboard.ScreenKeyboardThemeConfig SettingsMenuKeyboard.ScreenKeyboardTransparencyConfig SettingsMenuKeyboard.RemapHwKeysConfig SettingsMenuKeyboard.RemapScreenKbConfig SettingsMenuKeyboard.ScreenGesturesConfig SettingsMenuKeyboard.CustomizeScreenKbLayout
|
||||
# SettingsMenu.OkButton SettingsMenu.DummyMenu SettingsMenu.MainMenu SettingsMenuMisc.DownloadConfig SettingsMenuMisc.OptionalDownloadConfig SettingsMenuMisc.AudioConfig SettingsMenuMisc.VideoSettingsConfig SettingsMenuMisc.ShowReadme SettingsMenuMisc.GyroscopeCalibration SettingsMenuMisc.ResetToDefaultsConfig SettingsMenuMouse.MouseConfigMainMenu SettingsMenuMouse.DisplaySizeConfig SettingsMenuMouse.LeftClickConfig SettingsMenuMouse.RightClickConfig SettingsMenuMouse.AdditionalMouseConfig SettingsMenuMouse.JoystickMouseConfig SettingsMenuMouse.TouchPressureMeasurementTool SettingsMenuMouse.CalibrateTouchscreenMenu SettingsMenuKeyboard.KeyboardConfigMainMenu SettingsMenuKeyboard.ScreenKeyboardSizeConfig SettingsMenuKeyboard.ScreenKeyboardDrawSizeConfig SettingsMenuKeyboard.ScreenKeyboardThemeConfig SettingsMenuKeyboard.ScreenKeyboardTransparencyConfig SettingsMenuKeyboard.RemapHwKeysConfig SettingsMenuKeyboard.RemapScreenKbConfig SettingsMenuKeyboard.ScreenGesturesConfig SettingsMenuKeyboard.CustomizeScreenKbLayout SettingsMenuKeyboard.ScreenKeyboardAdvanced
|
||||
HiddenMenuOptions='SettingsMenuMouse.DisplaySizeConfig SettingsMenuMouse.MouseConfigMainMenu'
|
||||
|
||||
# Menu items to show at startup - this is Java code snippet, leave empty for default
|
||||
# new SettingsMenuMisc.ShowReadme(), (AppUsesMouse \&\& \! ForceRelativeMouseMode \? new SettingsMenuMouse.DisplaySizeConfig(true) : new SettingsMenu.DummyMenu()), new SettingsMenuMisc.OptionalDownloadConfig(true), new SettingsMenuMisc.GyroscopeCalibration()
|
||||
# Available menu items:
|
||||
# SettingsMenu.OkButton SettingsMenu.DummyMenu SettingsMenu.MainMenu SettingsMenuMisc.DownloadConfig SettingsMenuMisc.OptionalDownloadConfig SettingsMenuMisc.AudioConfig SettingsMenuMisc.VideoSettingsConfig SettingsMenuMisc.ShowReadme SettingsMenuMisc.GyroscopeCalibration SettingsMenuMisc.ResetToDefaultsConfig SettingsMenuMouse.MouseConfigMainMenu SettingsMenuMouse.DisplaySizeConfig SettingsMenuMouse.LeftClickConfig SettingsMenuMouse.RightClickConfig SettingsMenuMouse.AdditionalMouseConfig SettingsMenuMouse.JoystickMouseConfig SettingsMenuMouse.TouchPressureMeasurementTool SettingsMenuMouse.CalibrateTouchscreenMenu SettingsMenuKeyboard.KeyboardConfigMainMenu SettingsMenuKeyboard.ScreenKeyboardSizeConfig SettingsMenuKeyboard.ScreenKeyboardDrawSizeConfig SettingsMenuKeyboard.ScreenKeyboardThemeConfig SettingsMenuKeyboard.ScreenKeyboardTransparencyConfig SettingsMenuKeyboard.RemapHwKeysConfig SettingsMenuKeyboard.RemapScreenKbConfig SettingsMenuKeyboard.ScreenGesturesConfig SettingsMenuKeyboard.CustomizeScreenKbLayout
|
||||
# SettingsMenu.OkButton SettingsMenu.DummyMenu SettingsMenu.MainMenu SettingsMenuMisc.DownloadConfig SettingsMenuMisc.OptionalDownloadConfig SettingsMenuMisc.AudioConfig SettingsMenuMisc.VideoSettingsConfig SettingsMenuMisc.ShowReadme SettingsMenuMisc.GyroscopeCalibration SettingsMenuMisc.ResetToDefaultsConfig SettingsMenuMouse.MouseConfigMainMenu SettingsMenuMouse.DisplaySizeConfig SettingsMenuMouse.LeftClickConfig SettingsMenuMouse.RightClickConfig SettingsMenuMouse.AdditionalMouseConfig SettingsMenuMouse.JoystickMouseConfig SettingsMenuMouse.TouchPressureMeasurementTool SettingsMenuMouse.CalibrateTouchscreenMenu SettingsMenuKeyboard.KeyboardConfigMainMenu SettingsMenuKeyboard.ScreenKeyboardSizeConfig SettingsMenuKeyboard.ScreenKeyboardDrawSizeConfig SettingsMenuKeyboard.ScreenKeyboardThemeConfig SettingsMenuKeyboard.ScreenKeyboardTransparencyConfig SettingsMenuKeyboard.RemapHwKeysConfig SettingsMenuKeyboard.RemapScreenKbConfig SettingsMenuKeyboard.ScreenGesturesConfig SettingsMenuKeyboard.CustomizeScreenKbLayout SettingsMenuKeyboard.ScreenKeyboardAdvanced
|
||||
FirstStartMenuOptions=''
|
||||
|
||||
# Enable multi-ABI binary, with hardware FPU support - it will also work on old devices,
|
||||
# but .apk size is 2x bigger (y) / (n) / (x86) / (all)
|
||||
MultiABI=all
|
||||
# Specify architectures to compile, 'all' or 'y' to compile for all architectures.
|
||||
# Available architectures: armeabi armeabi-v7a armeabi-v7a-hard x86 mips
|
||||
MultiABI='armeabi-v7a'
|
||||
|
||||
# Minimum amount of RAM application requires, in Mb, SDL will print warning to user if it's lower
|
||||
AppMinimumRAM=0
|
||||
|
||||
# Application version code (integer)
|
||||
AppVersionCode=1405
|
||||
|
||||
# Application user-visible version name (string)
|
||||
AppVersionName="1.4.05"
|
||||
|
||||
# Reset SDL config when updating application to the new version (y) / (n)
|
||||
ResetSdlConfigForThisVersion=n
|
||||
|
||||
# Delete application data files when upgrading (specify file/dir paths separated by spaces)
|
||||
DeleteFilesOnUpgrade="%"
|
||||
|
||||
# Optional shared libraries to compile - removing some of them will save space
|
||||
# MP3 support by libMAD is encumbered by patents and libMAD is GPL-ed
|
||||
# Available libraries: mad (GPL-ed!) sdl_mixer sdl_image sdl_ttf sdl_net sdl_blitpool sdl_gfx sdl_sound intl xml2 lua jpeg png ogg flac tremor vorbis freetype xerces curl theora fluidsynth lzma lzo2 mikmod openal timidity zzip bzip2 yaml-cpp python boost_date_time boost_filesystem boost_iostreams boost_program_options boost_regex boost_signals boost_system boost_thread glu avcodec avdevice avfilter avformat avresample avutil swscale swresample bzip2
|
||||
@@ -214,10 +244,6 @@ AppBuildExclude=''
|
||||
# Application command line parameters, including app name as 0-th param
|
||||
AppCmdline=''
|
||||
|
||||
# Here you may type readme text, which will be shown during startup. Format is:
|
||||
# Text in English, use \\\\n to separate lines^de:Text in Deutsch^ru:Text in Russian, and so on (that's four backslashes, nice isn't it?)
|
||||
ReadmeText='^.'
|
||||
|
||||
# Screen size is used by Google Play to prevent an app to be installed on devices with smaller screens
|
||||
# Minimum screen size that application supports: (s)mall / (m)edium / (l)arge
|
||||
MinimumScreenSize=n
|
||||
@@ -228,6 +254,8 @@ AdmobPublisherId=n
|
||||
# Your AdMob test device ID, to receive a test ad
|
||||
AdmobTestDeviceId=
|
||||
|
||||
# Your AdMob banner size (BANNER/IAB_BANNER/IAB_LEADERBOARD/IAB_MRECT/IAB_WIDE_SKYSCRAPER/SMART_BANNER)
|
||||
# Your AdMob banner size (BANNER/FULL_BANNER/LEADERBOARD/MEDIUM_RECTANGLE/SMART_BANNER/WIDE_SKYSCRAPER/FULL_WIDTH:Height/Width:AUTO_HEIGHT/Width:Height)
|
||||
AdmobBannerSize=
|
||||
|
||||
# Google Play Game Services application ID, required for cloud saves to work
|
||||
GooglePlayGameServicesId=520035027247
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-optimizationpasses 5
|
||||
-optimizationpasses 1
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-dontpreverify
|
||||
@@ -34,22 +34,3 @@
|
||||
-keep class * implements android.os.Parcelable {
|
||||
public static final android.os.Parcelable$Creator *;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
-keep class com.<pkg>.AudioThread {
|
||||
int initAudio(int, int, int, int);
|
||||
int deinitAudio();
|
||||
int pauseAudioPlayback();
|
||||
int resumeAudioPlayback();
|
||||
int fillBuffer();
|
||||
int initAudioThread();
|
||||
*** getBuffer();
|
||||
}
|
||||
|
||||
-keep class com.<pkg>.DemoRenderer {
|
||||
int swapBuffers();
|
||||
void showScreenKeyboard(java.lang.String, int);
|
||||
}
|
||||
|
||||
@@ -11,4 +11,4 @@
|
||||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
# Project target.
|
||||
target=android-19
|
||||
target=android-20
|
||||
|
||||
Reference in New Issue
Block a user