Compare commits

..

11 Commits

Author SHA1 Message Date
bl00dymarie 8b101ec952 Release: 1.2410.29 2024-10-29 19:29:18 +01:00
bl00dymarie 5bb6bc05e7 Update Sdk to comply with Android14 2024-10-29 19:21:55 +01:00
bl00dymarie 805587302b Merge branch '730-bug-bad-version-of-the-soloader-sdk' into 'main'
Resolve "Bug: Bad version of the SoLoader SDK"

Closes #730

See merge request bloodyhealth/drip!689
2024-10-24 12:25:51 +00:00
bl00dymarie e3f44d7654 Release: 1.2410.22 2024-10-24 14:19:05 +02:00
bl00dymarie 590acd0bcb Fix: Bad version of the SoLoader SDK 2024-10-24 14:19:05 +02:00
bl00dymarie 7710e9c9bd Merge branch '728-reminders-appear-only-after-opening-the-app-on-some-phone-models' into 'main'
Fix: Allow push notification in idle state for Android

Closes #728

See merge request bloodyhealth/drip!687
2024-10-22 12:06:27 +00:00
Lynn a434242640 Added step "yarn install" to iOS set-up 2024-10-18 18:59:47 +00:00
bl00dymarie 05f28b072a Fix: Allow push notification in idle state for Android 2024-10-15 13:38:42 +02:00
bl00dymarie 223ac148bd Merge branch 'Chore/Fix-android-build' into 'main'
Chore/fix android build

See merge request bloodyhealth/drip!686
2024-10-15 11:36:01 +00:00
bl00dymarie e82dcb6cc1 Chore: Store android keystore properties in separate file 2024-10-07 18:02:05 +02:00
bl00dymarie bd9c586edb Chore: Upgrade react-native to 0.68.5 2024-10-07 18:01:56 +02:00
7 changed files with 17 additions and 21 deletions
-11
View File
@@ -2,17 +2,6 @@
All notable changes to this project will be documented in this file.
## v1.2410.7 Android & iOS
### Changes
- Updated dependencies:
- react-native v0.68.5
### Adds
A button that links to our FAQ page on the drip website
## v1.2403.19 Android & iOS
### Changes
+7 -3
View File
@@ -131,15 +131,19 @@ Minimum system requirements to run iOS app are as follows:
- MacOS 10.15.7 for Mac users
- Xcode 13 (command line tools only might be enough)
i. Install XCode dependencies by running the following command from the root project directory:
i. Install yarn dependencies
yarn install ..
ii. Install XCode dependencies by running the following command from the root project directory:
cd ios && pod install && cd ..
ii. To run app either open drip workspace ('drip.xcworkspace' file) with XCode and run "Build" or run the following command:
iii. To run app either open drip workspace ('drip.xcworkspace' file) with XCode and run "Build" or run the following command:
yarn ios
iii. If you are building the app with XCode make sure you are running this as well:
iiii. If you are building the app with XCode make sure you are running this as well:
yarn start
+2 -2
View File
@@ -146,8 +146,8 @@ android {
applicationId "com.drip"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 35
versionName "1.2410.7"
versionCode 39
versionName "1.2410.29"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
+4 -3
View File
@@ -49,10 +49,11 @@ allprojects {
}
ext {
buildToolsVersion = "33.0.2"
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
compileSdkVersion = 34
targetSdkVersion = 34
buildToolsVersion = "34.0.0"
soLoaderVersion = "0.10.4+"
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
+1 -1
View File
@@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2410.7</string>
<string>1.2410.29</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
+2
View File
@@ -57,6 +57,7 @@ export default function setupNotifications(navigate, setDate) {
vibrate: false,
repeatType: 'day',
channelId: 'drip-channel-id',
allowWhileIdle: true,
})
}
}, false)
@@ -100,6 +101,7 @@ function setupPeriodReminder() {
date: reminderDate.toDate(),
vibrate: false,
channelId: 'drip-channel-id',
allowWhileIdle: true,
})
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "drip.",
"version": "1.2410.7",
"version": "1.2410.29",
"contributors": [
"Julia Friesel <julia.friesel@gmail.com>",
"Marie Kochsiek",