-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
329 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://xen.crew.c-base.org/pymlgame-controller/pymlgame-controller_latest.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
-- Merging decision tree log --- | ||
manifest | ||
ADDED from AndroidManifest.xml:2:1 | ||
package | ||
ADDED from AndroidManifest.xml:4:5 | ||
INJECTED from AndroidManifest.xml:0:0 | ||
INJECTED from AndroidManifest.xml:0:0 | ||
android:versionName | ||
INJECTED from AndroidManifest.xml:0:0 | ||
INJECTED from AndroidManifest.xml:0:0 | ||
xmlns:android | ||
ADDED from AndroidManifest.xml:3:5 | ||
android:versionCode | ||
INJECTED from AndroidManifest.xml:0:0 | ||
INJECTED from AndroidManifest.xml:0:0 | ||
android:installLocation | ||
ADDED from AndroidManifest.xml:5:5 | ||
supports-screens | ||
ADDED from AndroidManifest.xml:6:5 | ||
android:largeScreens | ||
ADDED from AndroidManifest.xml:6:23 | ||
android:smallScreens | ||
ADDED from AndroidManifest.xml:6:106 | ||
android:normalScreens | ||
ADDED from AndroidManifest.xml:6:51 | ||
android:anyDensity | ||
ADDED from AndroidManifest.xml:6:80 | ||
uses-permission#android.permission.INTERNET | ||
ADDED from AndroidManifest.xml:7:5 | ||
android:name | ||
ADDED from AndroidManifest.xml:7:22 | ||
uses-permission#android.permission.VIBRATE | ||
ADDED from AndroidManifest.xml:8:5 | ||
android:name | ||
ADDED from AndroidManifest.xml:8:22 | ||
application | ||
ADDED from AndroidManifest.xml:9:5 | ||
MERGED from com.android.support:appcompat-v7:21.0.3:16:5 | ||
MERGED from com.android.support:support-v4:21.0.3:16:5 | ||
android:label | ||
ADDED from AndroidManifest.xml:12:9 | ||
android:allowBackup | ||
ADDED from AndroidManifest.xml:10:9 | ||
android:icon | ||
ADDED from AndroidManifest.xml:11:9 | ||
android:theme | ||
ADDED from AndroidManifest.xml:13:9 | ||
activity#org.c_base.pymlgame.controller.MainActivity | ||
ADDED from AndroidManifest.xml:14:9 | ||
android:screenOrientation | ||
ADDED from AndroidManifest.xml:17:13 | ||
android:label | ||
ADDED from AndroidManifest.xml:16:13 | ||
android:name | ||
ADDED from AndroidManifest.xml:15:13 | ||
intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER | ||
ADDED from AndroidManifest.xml:18:13 | ||
action#android.intent.action.MAIN | ||
ADDED from AndroidManifest.xml:19:17 | ||
android:name | ||
ADDED from AndroidManifest.xml:19:25 | ||
category#android.intent.category.LAUNCHER | ||
ADDED from AndroidManifest.xml:20:17 | ||
android:name | ||
ADDED from AndroidManifest.xml:20:27 | ||
uses-sdk | ||
INJECTED from AndroidManifest.xml:0:0 reason: use-sdk injection requested | ||
MERGED from com.android.support:appcompat-v7:21.0.3:15:5 | ||
MERGED from com.android.support:support-v4:21.0.3:15:5 | ||
android:targetSdkVersion | ||
INJECTED from AndroidManifest.xml:0:0 | ||
INJECTED from AndroidManifest.xml:0:0 | ||
android:minSdkVersion | ||
INJECTED from AndroidManifest.xml:0:0 | ||
INJECTED from AndroidManifest.xml:0:0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.ligi.pmlctrl" > | ||
|
||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<manifest | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.c_base.pymlgame.controller" | ||
android:installLocation="auto"> | ||
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.VIBRATE" /> | ||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
android:theme="@style/AppTheme"> | ||
<activity | ||
android:name=".MainActivity" | ||
android:label="@string/app_name" | ||
android:screenOrientation="landscape"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.