Skip to content

Commit

Permalink
ferrite-wallet v1.0.0-3.1.5-6.41
Browse files Browse the repository at this point in the history
Schildbach v6.41 fork

Ferrite Core v3.1.5
  • Loading branch information
koh-gt committed Sep 19, 2024
1 parent c209cec commit f3588f6
Show file tree
Hide file tree
Showing 1,796 changed files with 249,228 additions and 29,464 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.gradle/
gradlew
gradlew.bat
gradle/wrapper
build/
local.properties
.classpath
Expand All @@ -9,4 +12,4 @@ local.properties
bin/
gen/
gradle/
*.apk
*.apk
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,12 @@ This project contains several sub-projects:
You can build all sub-projects at once using Gradle:

`gradle clean build`

You can install the app from the app store of your choice:

* __Testnet__:
<a href="https://f-droid.org/app/de.schildbach.wallet_test">F-Droid</a> |
<a href='https://play.google.com/store/apps/details?id=de.schildbach.wallet_test'>Google Play</a>
* __Mainnet__:
<a href="https://f-droid.org/app/de.schildbach.wallet">F-Droid</a> |
<a href='https://play.google.com/store/apps/details?id=de.schildbach.wallet'>Google Play</a>
14 changes: 9 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
buildscript {
repositories {
jcenter()
google()
}

dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath('fr.avianey.androidsvgdrawable:gradle-plugin:3.0.0') {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath('fr.avianey.androidsvgdrawable:gradle-plugin:3.1.1') {
exclude group: 'xerces'
}
}
}

allprojects {
repositories {
jcenter()
}
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
536 changes: 279 additions & 257 deletions eclipse-code-format.xml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
org.gradle.jvmargs=-Xmx2048M
android.useAndroidX=true


25 changes: 0 additions & 25 deletions integration-android/COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -175,28 +175,3 @@
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
6 changes: 3 additions & 3 deletions integration-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'java'

dependencies {
compile('com.google.android:android:4.0.1.2') {
implementation('com.google.android:android:4.0.1.2') {
transitive false
}
}
Expand All @@ -18,6 +18,6 @@ sourceSets {
}

compileJava {
sourceCompatibility '1.5'
targetCompatibility '1.5'
sourceCompatibility '1.8'
targetCompatibility '1.8'
}
Loading

0 comments on commit f3588f6

Please sign in to comment.