mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-09 22:00:39 +01:00
move to sdk-22 breaks jni on x86, so revert to -19 for now.
This commit is contained in:
parent
0b7dca2222
commit
cd93bdb03e
6 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@
|
|||
<!-- BE SURE TO MODIFY project.properties AND the variable TARGET in
|
||||
../scripts/setup_local_props.sh if targetSdkVersion changes!!!
|
||||
-->
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="22" />
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="19" />
|
||||
|
||||
<supports-screens android:resizeable="true"
|
||||
android:smallScreens="true"
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<!-- BE SURE TO MODIFY project.project AND the variable TARGET in
|
||||
../scripts/setup_local_props.sh if targetSdkVersion changes!!!
|
||||
-->
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="22" />
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="19" />
|
||||
|
||||
<supports-screens android:resizeable="true"
|
||||
android:smallScreens="true"
|
||||
|
|
|
@ -26,7 +26,7 @@ subprojects {
|
|||
afterEvaluate {project ->
|
||||
if (project.hasProperty("android")) {
|
||||
android {
|
||||
compileSdkVersion 22
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion '22.0.1'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
# proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
# Project target.
|
||||
target=android-22
|
||||
target=android-19
|
||||
|
|
|
@ -66,7 +66,7 @@ public class DbgUtils {
|
|||
if ( s_doLog ) {
|
||||
String time = "";
|
||||
// No need for timestamp on marshmallow, as the OS provides it
|
||||
if ( Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1 ) {
|
||||
if ( true /*Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1*/ ) {
|
||||
s_time.setToNow();
|
||||
time = s_time.format("[%H:%M:%S]-");
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -u -e
|
||||
|
||||
TARGET="android-22"
|
||||
TARGET="android-19"
|
||||
|
||||
usage() {
|
||||
echo "usage: $0 [--target TARGET]"
|
||||
|
|
Loading…
Add table
Reference in a new issue