Skip to content
Snippets Groups Projects
Commit 3d3a7e33 authored by Julia Friesel's avatar Julia Friesel
Browse files

Merge branch '148-actually-package-the-app-and-install-it' into 'master'

Resolve "actually package the app and install it"

Closes #148

See merge request bloodyhealth/drip!73
parents 169af952 7f66081e
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 0 deletions
......@@ -54,3 +54,10 @@ buck-out/
# Bundle artifact
*.jsbundle
# RN android release
android/app/bin/
android/app/release/
android/app/src/main/assets/index.android.bundle
android/.project
android/app/.project
......@@ -108,6 +108,16 @@ android {
abiFilters "armeabi-v7a", "x86"
}
}
signingConfigs {
release {
if (project.hasProperty('DRIP_RELEASE_STORE_FILE')) {
storeFile file(DRIP_RELEASE_STORE_FILE)
storePassword DRIP_RELEASE_STORE_PASSWORD
keyAlias DRIP_RELEASE_KEY_ALIAS
keyPassword DRIP_RELEASE_KEY_PASSWORD
}
}
}
splits {
abi {
reset()
......@@ -120,6 +130,7 @@ android {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
signingConfig signingConfigs.release
}
}
// applicationVariants are e.g. debug, release
......
android/app/src/main/res/drawable-hdpi/ic_notification.png

430 B

android/app/src/main/res/drawable-mdpi/ic_notification.png

327 B

android/app/src/main/res/drawable-xhdpi/ic_notification.png

642 B

android/app/src/main/res/drawable-xxhdpi/ic_notification.png

879 B

android/app/src/main/res/drawable-xxxhdpi/ic_notification.png

1.23 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment