forked from uberspot/2048-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorganize project setup, and maintenance (uberspot#67)
* rearranged project files * code n stuff Signed-off-by: TacoTheDank <[email protected]> * changelog dependency Signed-off-by: TacoTheDank <[email protected]>
- Loading branch information
1 parent
72f7890
commit ec194a0
Showing
45 changed files
with
180 additions
and
185 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "assets/2048"] | ||
path = assets/2048 | ||
[submodule "2048"] | ||
path = 2048 | ||
url = https://github.com/uberspot/2048.git |
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,15 +1,17 @@ | ||
language: android | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
android: | ||
components: | ||
- tools | ||
- build-tools-28.0.2 | ||
- android-26 | ||
- platform-tools | ||
- build-tools-28.0.3 | ||
- android-28 | ||
|
||
- extra-android-support | ||
- extra-android-m2repository | ||
|
||
jdk: | ||
- oraclejdk8 | ||
script: | ||
- ./gradlew build |
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,33 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 28 | ||
buildToolsVersion '28.0.3' | ||
|
||
defaultConfig { | ||
applicationId "com.uberspot.a2048" | ||
minSdkVersion 8 | ||
targetSdkVersion 28 | ||
versionCode 23 | ||
versionName "2.08" | ||
} | ||
|
||
lintOptions { | ||
disable 'MissingTranslation' | ||
abortOnError false | ||
} | ||
|
||
compileOptions { | ||
encoding = 'UTF-8' | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation 'de.cketti.library.changelog:ckchangelog:1.2.2' | ||
// TODO: choose correct library and implement it (https://github.com/cketti/ckChangeLog/tree/version_2) | ||
//implementation 'de.cketti.library.changelog:ckchangelog-legacy-dialog:2.0.0-SNAPSHOT' | ||
// OR | ||
//implementation 'de.cketti.library.changelog:ckchangelog-core:2.0.0-SNAPSHOT' | ||
} |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,9 +1,9 @@ | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android" > | ||
<menu> | ||
|
||
<!--<item | ||
android:id="@+id/action_settings" | ||
android:orderInCategory="100" | ||
android:showAsAction="never" | ||
android:title="@string/action_settings"/>--> | ||
android:title="@string/action_settings" />--> | ||
|
||
</menu> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
31 changes: 23 additions & 8 deletions
31
res/xml/changelog_master.xml → app/src/main/res/xml/changelog_master.xml
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,27 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<changelog> | ||
<release version="2.08" versioncode="23" > | ||
<release | ||
version="2.08" | ||
versioncode="23"> | ||
<change>Added Esperanto and Dutch (thx Robin van der Vliet).</change> | ||
<change>Fix bug with floating windows (thx diogopereira)</change> | ||
</release> | ||
<release version="2.06" versioncode="22" > | ||
<release | ||
version="2.06" | ||
versioncode="22"> | ||
<change>Limit undo button to last 50 states to avoid using too much memory.</change> | ||
</release> | ||
<release version="2.05" versioncode="21" > | ||
<release | ||
version="2.05" | ||
versioncode="21"> | ||
<change>Added changelog in app</change> | ||
</release> | ||
<release version="2.0" versioncode="20" > | ||
<release | ||
version="2.0" | ||
versioncode="20"> | ||
<change>Added undo button (thx to fraggerfox on github)</change> | ||
</release> | ||
<release version="1.96" versioncode="19" > | ||
<release | ||
version="1.96" | ||
versioncode="19"> | ||
<change>Rebuilt apk with new build tools.</change> | ||
</release> | ||
<release version="1.95" versioncode="18"> | ||
<change>Added German, Spanish, Polish, Serbian translations thx to contributors in github</change> | ||
<release | ||
version="1.95" | ||
versioncode="18"> | ||
<change>Added German, Spanish, Polish, Serbian translations thx to contributors in github | ||
</change> | ||
<change>Added experimental night mode button</change> | ||
<change>Minor optimizations to responsiveness</change> | ||
</release> | ||
<release version="1.91" versioncode="18" > | ||
<release | ||
version="1.91" | ||
versioncode="18"> | ||
<change>Added greek and french app translation, minor build improvements.</change> | ||
</release> | ||
</changelog> |
Submodule 2048
deleted from
35a371
Oops, something went wrong.