Skip to content

Commit 27be2b4

Browse files
authored
fix: minor ui improvements and code refractors (#53)
1 parent 3f3a374 commit 27be2b4

77 files changed

Lines changed: 272 additions & 355 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Windows files
2+
[*.bat]
3+
end_of_line = crlf

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ DerivedData
2121
*.ipa
2222
*.xcuserstate
2323
xcshareddata
24+
*.GoogleService-Info.plist
2425

2526
# Android/IntelliJ
2627
#
@@ -73,6 +74,8 @@ android/app/build/*
7374
android/build/*
7475
android/app/release/*
7576
android/app/releaseStaging/*
77+
output-metadata.json
78+
7679

7780
*.apk
7881
*.aab

.node-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions

android/app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:tools="http://schemas.android.com/tools"
2+
xmlns:android="http://schemas.android.com/apk/res/android">
23

34
<uses-permission android:name="android.permission.INTERNET" />
45
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@@ -10,10 +11,11 @@
1011
android:roundIcon="@mipmap/ic_launcher_round"
1112
android:allowBackup="true"
1213
android:usesCleartextTraffic="true"
13-
android:theme="@style/AppTheme">
14+
android:networkSecurityConfig="@xml/network_security_config"
15+
android:theme="@style/AppTheme"
16+
tools:targetApi="n">
1417
<activity
1518
android:name=".MainActivity"
16-
android:label="@string/app_name"
1719
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
1820
android:launchMode="singleTask"
1921
android:windowSoftInputMode="adjustNothing"
15.9 KB
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@color/ic_launcher_background"/>
3+
<background android:drawable="@mipmap/ic_launcher_background"/>
44
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
5+
<monochrome android:drawable="@mipmap/ic_launcher_foreground"/>
56
</adaptive-icon>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@color/ic_launcher_background"/>
3+
<background android:drawable="@mipmap/ic_launcher_background"/>
44
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
5+
<monochrome android:drawable="@mipmap/ic_launcher_foreground"/>
56
</adaptive-icon>
-1.97 KB
Binary file not shown.
1.4 KB

0 commit comments

Comments
 (0)