Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
celian-rib committed Dec 12, 2022
1 parent 7c6f600 commit 1728dcd
Show file tree
Hide file tree
Showing 6 changed files with 862 additions and 820 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ android {
applicationId "com.dropy.project"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 10
versionName "0.0.10"
versionCode 12
versionName "0.0.12"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
vectorDrawables.useSupportLibrary = true

Expand Down
1,659 changes: 851 additions & 808 deletions android/app/src/main/assets/index.android.bundle

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "Dropy",
"displayName": "Dropy",

"version": "0.0.11",
"version": "0.0.12",
"versionFlag": "private-beta-rc",
"requiredServerVersion": "0.0.11",
"requiredServerVersion": "0.0.12",

"productionMode": false
"productionMode": true
}
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ PODS:
- RNScreens (3.18.2):
- React-Core
- React-RCTImage
- RNSentry (4.9.0):
- RNSentry (4.11.0):
- React-Core
- Sentry/HybridSDK (= 7.31.2)
- RNSVG (13.6.0):
Expand Down Expand Up @@ -735,7 +735,7 @@ SPEC CHECKSUMS:
RNInAppBrowser: e36d6935517101ccba0e875bac8ad7b0cb655364
RNPermissions: dcdb7b99796bbeda6975a6e79ad519c41b251b1c
RNScreens: 34cc502acf1b916c582c60003dc3089fa01dc66d
RNSentry: 6503a8ec616947dbe98be828307c8f49e7686674
RNSentry: f052387ebe939949c74c2cae0c850e76f6d14ddb
RNSVG: 3a79c0c4992213e4f06c08e62730c5e7b9e4dc17
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
Expand Down
4 changes: 2 additions & 2 deletions ios/dropy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.0.11;
MARKETING_VERSION = 0.0.12;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down Expand Up @@ -483,7 +483,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.0.11;
MARKETING_VERSION = 0.0.12;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
5 changes: 2 additions & 3 deletions src/services/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import crypto from 'crypto-js';
import Storage from '../utils/storage';
import AppInfo from '../../app.json';


const DOMAIN_PREFIX = AppInfo.productionMode ? '' : 'preprod-';
const API_BASE_URL = `https://${DOMAIN_PREFIX}api.dropy-app.com`;

Expand Down Expand Up @@ -31,7 +30,7 @@ const register = async (displayName, email, password, newsLetter) => {
const response = await axios.post('/register', {
displayName,
email,
hashedPassword,
password: hashedPassword,
newsLetter,
});

Expand All @@ -49,7 +48,7 @@ const login = async (email, password) => {
const hashedPassword = crypto.SHA256(password).toString();
const response = await axios.post('/login', {
email,
hashedPassword,
password: hashedPassword,
});

const { accessToken, refreshToken, expires, profile: user } = response.data;
Expand Down

0 comments on commit 1728dcd

Please sign in to comment.