Skip to content

Commit

Permalink
Merge tag 'v1.3.4'
Browse files Browse the repository at this point in the history
Conflicts:
	build.gradle
  • Loading branch information
cw committed May 9, 2015
2 parents 9e76f46 + 383bb6d commit 69a15c4
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -35,3 +35,6 @@ local.properties
# Proguard folder generated by Eclipse
proguard/
proguard_logs/

# Mac directory index
*.DS_Store
10 changes: 5 additions & 5 deletions AndroidManifest.xml
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="biz.codefuture.svgviewer"
android:installLocation="preferExternal"
android:versionCode="7"
android:versionName="1.3.3" >
android:installLocation="auto"
android:versionCode="8"
android:versionName="1.3.4" >

<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="19" />
android:targetSdkVersion="22" />

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
Expand Down Expand Up @@ -38,4 +38,4 @@
</activity>
</application>

</manifest>
</manifest>
13 changes: 5 additions & 8 deletions build.gradle
Expand Up @@ -3,21 +3,18 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'org.notlocalhost.gradle:gradle-calabash-android-plugin:0.1.+'
classpath 'com.android.tools.build:gradle:1.0.0'
}
}
apply plugin: 'android'
apply plugin: 'calabash-test'
apply plugin: 'com.android.application'

dependencies {
compile fileTree(dir: 'libs', include: '*.jar')

}

android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
compileSdkVersion 22
buildToolsVersion "22.0.1"

lintOptions {
abortOnError false
Expand Down Expand Up @@ -67,7 +64,7 @@ android {
signingConfig signingConfigs.debug
}
release {
runProguard true
minifyEnabled true
//proguardFile proguard-project.txt
signingConfig signingConfigs.release
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Sat Apr 05 14:45:45 CDT 2014
#Thu May 07 21:22:09 CDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
2 changes: 1 addition & 1 deletion proguard-project.txt
Expand Up @@ -15,6 +15,6 @@
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-keepclassmembers class biz.codefuture.svgviewer.MainActivity.webview {
public *;
}
6 changes: 3 additions & 3 deletions res/xml/pref_headers.xml
Expand Up @@ -3,13 +3,13 @@
<!-- These settings headers are only used on tablets. -->

<header
android:fragment="${packageName}.${activityClass}$GeneralPreferenceFragment"
android:fragment="biz.codefuture.svgviewer.SettingsActivity$GeneralPreferenceFragment"
android:title="@string/pref_header_general" />
<header
android:fragment="${packageName}.${activityClass}$NotificationPreferenceFragment"
android:fragment="biz.codefuture.svgviewer.SettingsActivity$NotificationPreferenceFragment"
android:title="@string/pref_header_notifications" />
<header
android:fragment="${packageName}.${activityClass}$DataSyncPreferenceFragment"
android:fragment="biz.codefuture.svgviewer.SettingsActivity$DataSyncPreferenceFragment"
android:title="@string/pref_header_data_sync" />

</preference-headers>

0 comments on commit 69a15c4

Please sign in to comment.