Move Android WebView source to app directory
https://github.com/arianne/stendhal/issues/628
0
android/.gitignore → app/android/.gitignore
vendored
|
|
@ -27,7 +27,7 @@ android {
|
|||
versionCode 1
|
||||
versionName "${appVer}"
|
||||
setProperty("archivesBaseName", "${outputName}")
|
||||
setProperty("buildDir", "${projectDir}/../../build/build_android_client")
|
||||
setProperty("buildDir", "${projectDir}/../../../build/build_android_client")
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
targetSdkVersion 32
|
||||
|
Before Width: | Height: | Size: 505 KiB After Width: | Height: | Size: 505 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
0
android/gradlew → app/android/gradlew
vendored
|
|
@ -851,11 +851,11 @@
|
|||
<condition property="gradlew.exec" value="cmd">
|
||||
<os family="windows"/>
|
||||
</condition>
|
||||
<condition property="gradlew.script" value="/c "${user.dir}/android/gradlew.bat"">
|
||||
<condition property="gradlew.script" value="/c "${user.dir}/app/android/gradlew.bat"">
|
||||
<os family="windows"/>
|
||||
</condition>
|
||||
<property name="gradlew.exec" value="sh"/>
|
||||
<property name="gradlew.script" value=""${user.dir}/android/gradlew""/>
|
||||
<property name="gradlew.script" value=""${user.dir}/app/android/gradlew""/>
|
||||
|
||||
<echo
|
||||
if:set="exclude.webview"
|
||||
|
|
@ -889,7 +889,7 @@
|
|||
</condition>
|
||||
|
||||
<exec unless:set="exclude.webview" failonerror="true"
|
||||
executable="${gradlew.exec}" dir="android/">
|
||||
executable="${gradlew.exec}" dir="app/android/">
|
||||
<arg line="${gradlew.script}"/>
|
||||
<arg if:set="gradle.params" line="${gradle.params}"/>
|
||||
<arg if:set="android.build_wout_rev" value="${android.build}"/>
|
||||
|
|
|
|||