mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-21 23:48:00 +00:00
a294aa1a6b
Security hardened release: - Code obfuscation enabled (minifyEnabled=true, shrinkResources=true) - Sensitive files excluded (google-services.json, keystores) - Branch.io key moved to BuildConfig placeholder - Updated dependencies: OkHttp 4.12.0, Gson 2.10.1, BouncyCastle 1.77 - Comprehensive ProGuard rules for crypto wallet - Navigation 2.7.7, Lifecycle 2.7.0, ConstraintLayout 2.1.4
76 lines
2.0 KiB
Groovy
76 lines
2.0 KiB
Groovy
apply plugin: 'kotlin-parcelize'
|
|
apply from: '../tests.gradle'
|
|
|
|
android {
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'io.novafoundation.nova.feature_account_impl'
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', "*.aar"])
|
|
implementation project(':core-db')
|
|
implementation project(':common')
|
|
implementation project(':runtime')
|
|
implementation project(':feature-account-api')
|
|
implementation project(':feature-currency-api')
|
|
implementation project(':feature-ledger-api')
|
|
implementation project(':feature-ledger-core')
|
|
implementation project(':feature-versions-api')
|
|
implementation project(':feature-proxy-api')
|
|
implementation project(':feature-cloud-backup-api')
|
|
implementation project(":feature-swap-core:api")
|
|
implementation project(":feature-xcm:api")
|
|
implementation project(':web3names')
|
|
implementation project(':feature-deep-linking')
|
|
|
|
implementation kotlinDep
|
|
|
|
implementation androidDep
|
|
implementation materialDep
|
|
implementation cardViewDep
|
|
implementation constraintDep
|
|
|
|
implementation zXingCoreDep
|
|
implementation zXingEmbeddedDep
|
|
|
|
implementation bouncyCastleDep
|
|
|
|
implementation substrateSdkDep
|
|
|
|
implementation biometricDep
|
|
|
|
implementation coroutinesDep
|
|
implementation coroutinesAndroidDep
|
|
implementation viewModelKtxDep
|
|
implementation liveDataKtxDep
|
|
implementation lifeCycleKtxDep
|
|
|
|
implementation daggerDep
|
|
ksp daggerCompiler
|
|
|
|
implementation roomDep
|
|
ksp roomCompiler
|
|
|
|
implementation lifecycleDep
|
|
ksp lifecycleCompiler
|
|
|
|
testImplementation jUnitDep
|
|
testImplementation mockitoDep
|
|
|
|
implementation gsonDep
|
|
|
|
implementation insetterDep
|
|
implementation flexBoxDep
|
|
|
|
testImplementation project(":test-shared")
|
|
testImplementation project(":feature-cloud-backup-test")
|
|
} |