New app: Deck Wallet

This commit is contained in:
Boris Kraut 2014-10-23 16:36:03 +02:00
parent 83657d3acb
commit ec27d9445a
2 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,27 @@
Categories:Office
License:MIT
Web Site:http://x.co/deckhelp
Source Code:https://github.com/ecuamobi/deck-wallet
Issue Tracker:https://github.com/ecuamobi/deck-wallet/issues
Auto Name:Deck Wallet
Summary:Store your Bitcoins in a deck of cards.
Description:
Allows you to generate up to 52 bitcoin addresses by entering
the order of a deck of cards plus an optional password.
.
Repo Type:git
Repo:https://github.com/ecuamobi/deck-wallet
Build:1.0,100
commit=v1.0
rm=libs/*,src/org/spongycastle/crypto/generators/SCrypt.java
patch=deckwallet-gradle.patch
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.0
Current Version Code:100

View file

@ -0,0 +1,61 @@
diff --git a/build.gradle b/build.gradle
index e69de29..a6c29ac 100644
--- a/build.gradle
+++ b/build.gradle
@@ -0,0 +1,56 @@
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:0.12.2'
+ }
+}
+
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion '19.1'
+
+ defaultConfig {
+ minSdkVersion 9
+ targetSdkVersion 19
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+
+ packagingOptions {
+ exclude 'META-INF/LICENSE.txt'
+ exclude 'META-INF/NOTICE.txt'
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ resources.srcDirs = ['src']
+ aidl.srcDirs = ['src']
+ renderscript.srcDirs = ['src']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+
+ repositories {
+ mavenCentral()
+ }
+
+ dependencies {
+ compile 'com.android.support:support-v4:19.0.+'
+ compile 'com.madgag:sc-light-jdk15on:1.47.0.3'
+ }
+}