Skip to content

Commit

Permalink
Merge pull request #33 from GMG-group/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pressogh authored Nov 8, 2022
2 parents 665f665 + a61bba8 commit 3c7b168
Show file tree
Hide file tree
Showing 52 changed files with 3,183 additions and 560 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,7 @@ google-services.json
# End of https://www.toptal.com/developers/gitignore/api/reactnative

yarn.lock
Pods
Teenlief.xcworkspace
Podfile.lock
package-lock.json
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
android:windowSoftInputMode="stateAlwaysHidden|adjustResize"
android:exported="true"
>
<intent-filter>
Expand Down
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ buildscript {
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
kotlinVersion = "1.6.10"

if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
Expand Down
Binary file removed imageTest1.png
Binary file not shown.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';

import { LogBox } from 'react-native';
LogBox.ignoreLogs(['new NativeEventEmitter']); // Ignore log notification by message
LogBox.ignoreLogs(['useNativeDriver']);

AppRegistry.registerComponent(appName, () => App);
Loading

0 comments on commit 3c7b168

Please sign in to comment.