Skip to content
Snippets Groups Projects
Commit 1e220ef9 authored by tina's avatar tina
Browse files

Merge branch 'master' into '150-apply-design-to-chart'

# Conflicts:
#   components/calendar.js
#   components/chart/y-axis.js
parents 5218e72d 856de554
No related branches found
No related tags found
No related merge requests found
Showing
with 21 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
......@@ -25,3 +25,6 @@ You can run the tests with `npm test`.
## Debugging
When running into an old version of the app try to run the following command first:
`react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res`
## NFP rules
More information about how the app calculates fertility status and bleeding predictions in the [wiki on Gitlab](https://gitlab.com/bloodyhealth/drip/wikis/home)
......@@ -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