Compare commits
10 Commits
ca10b61242
...
f46fc27c49
| Author | SHA1 | Date | |
|---|---|---|---|
| f46fc27c49 | |||
| 21bc0d4e15 | |||
| becaf17479 | |||
| c9159fdaf2 | |||
|
|
4d60bfa948 | ||
| 90b58a43af | |||
| 655a23e4f1 | |||
| b39eb2f545 | |||
| 22e267a9a7 | |||
| 31f4b09145 |
3
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
.gradle
|
||||
|
||||
app/libs
|
||||
app/libs
|
||||
app/build
|
||||
@@ -32,6 +32,13 @@ android {
|
||||
buildTypes {
|
||||
debug {
|
||||
debuggable true
|
||||
if (project.hasProperty('debugBuild')) {
|
||||
xmake {
|
||||
// set abi filters (optional), e.g. armeabi, armeabi-v7a, arm64-v8a, x86, x86_64
|
||||
// we can also get abiFilters from defaultConfig.ndk.abiFilters
|
||||
buildMode "debug"
|
||||
}
|
||||
}
|
||||
}
|
||||
release {
|
||||
minifyEnabled false
|
||||
|
||||
@@ -7,9 +7,13 @@
|
||||
android:versionName="1.0"
|
||||
android:installLocation="auto">
|
||||
|
||||
<!-- OpenGL ES 2.0 -->
|
||||
<!-- OpenGL ES 3.0 -->
|
||||
<uses-feature android:glEsVersion="0x00030000" />
|
||||
|
||||
<!-- Network support -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
|
||||
<!-- Touchscreen support -->
|
||||
<uses-feature
|
||||
android:name="android.hardware.touchscreen"
|
||||
|
||||
1
app/src/main/assets
Symbolic link
@@ -0,0 +1 @@
|
||||
../../jni/Blitz/assets/
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 61 KiB |
@@ -1,3 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">Game</string>
|
||||
<string name="app_name">Blitz</string>
|
||||
</resources>
|
||||
|
||||