Revision aad987a7
Added by Leszek Koltunski over 3 years ago
| distorted-sokoban/src/main/AndroidManifest.xml | ||
|---|---|---|
| 15 | 15 |
<application android:icon="@drawable/icon" android:label="@string/app_name"> |
| 16 | 16 |
<activity android:name=".Sokoban" |
| 17 | 17 |
android:label="@string/app_name" |
| 18 |
android:exported="true" |
|
| 18 | 19 |
android:screenOrientation="portrait" |
| 19 | 20 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| 20 | 21 |
android:noHistory="true"> |
| ... | ... | |
| 24 | 25 |
</intent-filter> |
| 25 | 26 |
</activity> |
| 26 | 27 |
<activity android:name=".SokobanMain" |
| 28 |
android:exported="true" |
|
| 27 | 29 |
android:screenOrientation="portrait" |
| 28 | 30 |
android:label="@string/app_name" |
| 29 | 31 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| distorted-sokoban/src/main/java/com/threedcell/sokoban/SokobanRecords.java | ||
|---|---|---|
| 32 | 32 |
private static int lv; |
| 33 | 33 |
private static int mCols; |
| 34 | 34 |
|
| 35 |
private static final String URL = "http://koltunski.pl/sokoban/cgi-bin";
|
|
| 35 |
private static final String URL = "https://distorted.org/sokoban/cgi-bin";
|
|
| 36 | 36 |
private static String iso = null; |
| 37 | 37 |
private String name,veri; |
| 38 | 38 |
private String mLevel; |
Also available in: Unified diff
Use distorted.org as a server; adjust the manifest.