mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-23 09:12:16 -05:00
Fix gradle build
This commit is contained in:
parent
d885f145a0
commit
96de7cb101
@ -6,7 +6,7 @@
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="7"
|
||||
android:targetSdkVersion="14" />
|
||||
android:targetSdkVersion="18" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
|
@ -8,4 +8,4 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-15
|
||||
target=android-18
|
||||
|
@ -84,7 +84,7 @@ public class OpenPgpSignatureResult implements Parcelable {
|
||||
public String toString() {
|
||||
String out = new String();
|
||||
out += "\nsignatureStatus: " + signatureStatus;
|
||||
out += "signatureUserId: " + signatureUserId;
|
||||
out += "\nsignatureUserId: " + signatureUserId;
|
||||
out += "\nsignatureOnly: " + signatureOnly;
|
||||
return out;
|
||||
}
|
||||
|
@ -44,7 +44,7 @@
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="8"
|
||||
android:targetSdkVersion="17" />
|
||||
android:targetSdkVersion="18" />
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.wifi"
|
||||
|
@ -14,10 +14,13 @@ repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
/*
|
||||
* NOTE: Avoid dependencies from Maven. Include as much sources as possible for F-Droid!
|
||||
*/
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', includes: ['*.jar'], excludes: ['android-support-v4.jar'])
|
||||
//compile 'com.android.support:support-v4:18.0.+' // already in actionbarsherlock
|
||||
compile 'com.actionbarsherlock:actionbarsherlock:4.4.+@aar'
|
||||
compile 'com.android.support:support-v4:18.0.+' // already in actionbarsherlock
|
||||
compile project(':libraries:ActionBarSherlock')
|
||||
compile project(':libraries:HtmlTextView')
|
||||
}
|
||||
|
||||
@ -27,7 +30,7 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 8
|
||||
targetSdkVersion 17
|
||||
targetSdkVersion 18
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
@ -8,6 +8,6 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-17
|
||||
target=android-18
|
||||
android.library.reference.1=../libraries/ActionBarSherlock
|
||||
android.library.reference.2=../libraries/HtmlTextView
|
||||
|
@ -84,7 +84,7 @@ public class OpenPgpSignatureResult implements Parcelable {
|
||||
public String toString() {
|
||||
String out = new String();
|
||||
out += "\nsignatureStatus: " + signatureStatus;
|
||||
out += "signatureUserId: " + signatureUserId;
|
||||
out += "\nsignatureUserId: " + signatureUserId;
|
||||
out += "\nsignatureOnly: " + signatureOnly;
|
||||
return out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user