mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
Compare commits
26 Commits
gradle_aut
...
base
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6a1312733 | ||
|
|
71a8158c53 | ||
|
|
9919fa6088 | ||
|
|
e62839a7cd | ||
|
|
32c7de16fe | ||
|
|
f95b8e1c9d | ||
|
|
d774e762fc | ||
|
|
3e3754c485 | ||
|
|
dddf669a78 | ||
|
|
bd8da6ba0d | ||
|
|
1af4881211 | ||
|
|
b576bd6a32 | ||
|
|
291b5c35e3 | ||
|
|
09cdad344a | ||
|
|
53d223b8f8 | ||
|
|
999e338aff | ||
|
|
6284b7b428 | ||
|
|
7a6b8ec238 | ||
|
|
1f852864c8 | ||
|
|
26cbaad223 | ||
|
|
a483ab8c12 | ||
|
|
dea20cafe2 | ||
|
|
9347182487 | ||
|
|
5f0bb1d497 | ||
|
|
613e893e80 | ||
|
|
d6b0823499 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +0,0 @@
|
||||
/AndorsTrail/.idea/workspace.xml
|
||||
40
AndorsTrail/.gitignore
vendored
40
AndorsTrail/.gitignore
vendored
@@ -1,30 +1,5 @@
|
||||
# Android ignores
|
||||
app/src/main/res
|
||||
app/src/main/assets
|
||||
gen/
|
||||
bin/
|
||||
target/
|
||||
local.properties
|
||||
app/build/intermediates/
|
||||
build/
|
||||
debug/
|
||||
release/
|
||||
.gradle/
|
||||
|
||||
#IntelliJ
|
||||
.idea/
|
||||
out/production/
|
||||
out/test/
|
||||
*.iws
|
||||
*.ipr
|
||||
|
||||
# Other
|
||||
.metadata
|
||||
.svn/
|
||||
|
||||
|
||||
#copied from https://github.com/github/gitignore/blob/main/Gradle.gitignore
|
||||
.gradle
|
||||
.idea
|
||||
**/build/
|
||||
!src/**/build/
|
||||
|
||||
@@ -40,19 +15,8 @@ gradle-app.setting
|
||||
# Cache of project
|
||||
.gradletasknamecache
|
||||
|
||||
|
||||
local.properties
|
||||
|
||||
# Eclipse Gradle plugin generated files
|
||||
# Eclipse Core
|
||||
.project
|
||||
# JDT-specific (Eclipse Java Development Tools)
|
||||
.classpath
|
||||
#copied from https://github.com/github/gitignore/blob/main/Gradle.gitignore
|
||||
|
||||
|
||||
/AndorsTrail/.gradle
|
||||
/AndorsTrail/gradle/wrapper
|
||||
/AndorsTrail/app/build/
|
||||
/AndorsTrail/app/debug/
|
||||
/AndorsTrail/app/release/
|
||||
.classpath
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,13 +1,13 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
compileSdkVersion 32
|
||||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.gpl.rpg.AndorsTrail"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 30
|
||||
targetSdkVersion 32
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
@@ -19,29 +19,5 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.android.support:support-v4:28.0.0'
|
||||
}
|
||||
|
||||
task copyRes(type: Copy) {
|
||||
description "Copies the res folder to the modules res folder (& renames .tmx to .xml)"
|
||||
from "${rootDir}/res"
|
||||
into "${projectDir}/src/main/res"
|
||||
rename "(.*)\\.tmx", "\$1.xml"
|
||||
}
|
||||
|
||||
task copyTranslation(type: Copy) {
|
||||
description("Copies the translation files to the modules translations folder")
|
||||
from "${rootDir}/assets/translation"
|
||||
into "${projectDir}/src/main/assets/translation"
|
||||
}
|
||||
|
||||
task cleanup(type: Delete) {
|
||||
description("Deletes the assets/translation and the res folder from the modules folder")
|
||||
delete "${projectDir}/src/main/res", "${projectDir}/src/main/assets/translation"
|
||||
}
|
||||
|
||||
afterEvaluate {
|
||||
preBuild.dependsOn project.tasks.copyRes
|
||||
preBuild.dependsOn project.tasks.copyTranslation
|
||||
clean.dependsOn project.tasks.cleanup
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="66"
|
||||
android:versionName="0.8.2"
|
||||
android:versionCode="64"
|
||||
android:versionName="0.7.17"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
@@ -31,7 +31,7 @@
|
||||
android:requestLegacyExternalStorage="true"
|
||||
android:hasFragileUserData="true"
|
||||
android:preserveLegacyExternalStorage="true"
|
||||
>
|
||||
tools:targetApi="30">
|
||||
<activity
|
||||
android:name="com.gpl.rpg.AndorsTrail.activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
@@ -62,7 +62,7 @@
|
||||
<activity android:name="com.gpl.rpg.AndorsTrail.activity.DisplayWorldMapActivity" />
|
||||
|
||||
<provider
|
||||
android:name="android.support.v4.content.FileProvider"
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="com.gpl.rpg.AndorsTrail.fileprovider"
|
||||
android:grantUriPermissions="true"
|
||||
android:exported="false">
|
||||
|
||||
BIN
AndorsTrail/app/src/main/assets/translation/ar.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/ar.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/ckb.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/ckb.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/cs.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/cs.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/eo.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/eo.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/id.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/id.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/ms.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/ms.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/pa.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/pa.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/ro.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/ro.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/ru.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/ru.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/th.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/th.mo
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
AndorsTrail/app/src/main/assets/translation/zh_CN.mo
Normal file
BIN
AndorsTrail/app/src/main/assets/translation/zh_CN.mo
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user