mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-12-23 11:21:29 +00:00
Fix font color problems on pre-Honeycomb (fixes #63).
This commit is contained in:
parent
980bb83c7c
commit
12db32dcd8
4 changed files with 10 additions and 2 deletions
|
@ -4,7 +4,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:0.11+'
|
classpath 'com.android.tools.build:gradle:0.12.+'
|
||||||
classpath 'com.alexvasilkov:android_sign:0.2+'
|
classpath 'com.alexvasilkov:android_sign:0.2+'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
android:icon="@drawable/ic_launcher"
|
android:icon="@drawable/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
|
android:theme="@style/AppTheme" >
|
||||||
<activity
|
<activity
|
||||||
android:name=".gui.MainActivity"
|
android:name=".gui.MainActivity"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
|
|
4
src/main/res/values-v11/style.xml
Normal file
4
src/main/res/values-v11/style.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar" />
|
||||||
|
</resources>
|
4
src/main/res/values/style.xml
Normal file
4
src/main/res/values/style.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<style name="AppTheme" parent="@style/Theme.AppCompat" />
|
||||||
|
</resources>
|
Loading…
Reference in a new issue