Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed Preferencefragment/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 0 additions & 6 deletions Preferencefragment/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

21 changes: 0 additions & 21 deletions aFileChooser/build.gradle

This file was deleted.

29 changes: 29 additions & 0 deletions android_commons.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
repositories {
mavenCentral()
jcenter()
}


android {
compileSdkVersion 21
buildToolsVersion '21.1.2'

defaultConfig {
minSdkVersion 10
targetSdkVersion 21
}

lintOptions {
abortOnError false
}


packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/ASL2.0'
}
}
16 changes: 16 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#Android Studio
.idea
*.iml
*.ipr
*.iws
classes
gen-external-apklibs

#Gradle
.gradle
local.properties
build

#Crashlytics
/src/main/res/values/com_crashlytics_export_strings.xml
/src/main/assets/crashlytics-build.properties
49 changes: 19 additions & 30 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,55 +1,44 @@
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
apply from: '../android_commons.gradle'

repositories {
mavenCentral()
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName "com.doplgangr.secrecy"
}
}
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'

defaultConfig {
applicationId "com.doplgangr.secrecy"
minSdkVersion 10
targetSdkVersion 21
versionCode 53
versionName "0.5.3"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}

dependencies {
compile project(':libraries:aFileChooser')
compile project(':libraries:Preferencefragment')
compile project(':libraries:payme')


compile 'commons-io:commons-io:2.4'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
compile 'com.github.chrisbanes.photoview:library:1.2.3'
compile 'com.path:android-priority-jobqueue:1.1.2'
compile 'de.greenrobot:eventbus:2.2.0'
compile project(':aFileChooser')
compile project(':Preferencefragment')
compile project(':payme:library')
compile 'com.google.protobuf:protobuf-java:2.6.0'
compile 'com.madgag.spongycastle:prov:1.51.0.0'
}

android {
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
defaultConfig {
applicationId "com.doplgangr.secrecy"
versionCode 53
versionName "0.5.3"
}

buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some unneeded newline in this file.


}
12 changes: 12 additions & 0 deletions libraries/Preferencefragment/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#Android Studio
.idea
*.iml
*.ipr
*.iws
classes
gen-external-apklibs

#Gradle
.gradle
local.properties
build
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@ buildscript {

apply plugin: 'android-library'
apply plugin: 'maven'
apply from: '../../android_commons.gradle'

dependencies {
compile 'com.android.support:support-v4:21.0.3'
}

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
minSdkVersion 10
targetSdkVersion 19
}

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
Expand Down
12 changes: 12 additions & 0 deletions libraries/aFileChooser/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#Android Studio
.idea
*.iml
*.ipr
*.iws
classes
gen-external-apklibs

#Gradle
.gradle
local.properties
build
8 changes: 8 additions & 0 deletions libraries/aFileChooser/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apply plugin: 'com.android.library'
apply from: '../../android_commons.gradle'

dependencies {
compile 'com.android.support:appcompat-v7:19.0.0'
compile 'com.android.support:support-v4:19.0.0'

}
12 changes: 12 additions & 0 deletions libraries/payme/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#Android Studio
.idea
*.iml
*.ipr
*.iws
classes
gen-external-apklibs

#Gradle
.gradle
local.properties
build
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions libraries/payme/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apply plugin: 'com.android.library'
apply from: '../../android_commons.gradle'


File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions payme/.gitignore

This file was deleted.

36 changes: 0 additions & 36 deletions payme/example/AndroidManifest.xml

This file was deleted.

44 changes: 0 additions & 44 deletions payme/example/pom.xml

This file was deleted.

Binary file removed payme/example/res/drawable-hdpi/ic_action_search.png
Binary file not shown.
Binary file removed payme/example/res/drawable-hdpi/ic_launcher.png
Binary file not shown.
Binary file removed payme/example/res/drawable-ldpi/ic_launcher.png
Binary file not shown.
Binary file removed payme/example/res/drawable-mdpi/ic_action_search.png
Binary file not shown.
Binary file removed payme/example/res/drawable-mdpi/ic_launcher.png
Binary file not shown.
Binary file removed payme/example/res/drawable-xhdpi/buy_gas.png
Binary file not shown.
Binary file removed payme/example/res/drawable-xhdpi/drive.png
Binary file not shown.
Binary file removed payme/example/res/drawable-xhdpi/free.png
Binary file not shown.
Binary file removed payme/example/res/drawable-xhdpi/gas0.png
Binary file not shown.
Binary file removed payme/example/res/drawable-xhdpi/gas1.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/gas2.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/gas3.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/gas4.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/gas_inf.png
Diff not rendered.
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/ic_launcher.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/infinite_gas.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/premium.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/title.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/upgrade_app.png
Diff not rendered.
Binary file removed payme/example/res/drawable-xhdpi/wait.png
Diff not rendered.
51 changes: 0 additions & 51 deletions payme/example/res/layout/activity_main.xml

This file was deleted.

6 changes: 0 additions & 6 deletions payme/example/res/values/strings.xml

This file was deleted.

5 changes: 0 additions & 5 deletions payme/example/res/values/styles.xml

This file was deleted.

Loading