Skip to content

Commit a2fa493

Browse files
DominicGBauerDominicGBauer
and
DominicGBauer
authored
chore: update app icons for react native demos (#270)
Co-authored-by: DominicGBauer <[email protected]>
1 parent 9521e24 commit a2fa493

File tree

73 files changed

+1820
-2364
lines changed

Some content is hidden

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

73 files changed

+1820
-2364
lines changed

demos/django-react-native-todolist/android/app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ android {
110110
shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false)
111111
minifyEnabled enableProguardInReleaseBuilds
112112
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
113+
crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true)
113114
}
114115
}
115116
packagingOptions {
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

demos/django-react-native-todolist/android/app/src/main/res/values/styles.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<item name="android:editTextStyle">@style/ResetEditText</item>
55
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
66
<item name="colorPrimary">@color/colorPrimary</item>
7-
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
7+
<item name="android:statusBarColor">#ffffff</item>
88
</style>
99
<style name="ResetEditText" parent="@android:style/Widget.EditText">
1010
<item name="android:padding">0dp</item>

demos/django-react-native-todolist/android/gradle.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ android.useAndroidX=true
2525
# Automatically convert third-party libraries to use AndroidX
2626
android.enableJetifier=true
2727

28+
# Enable AAPT2 PNG crunching
29+
android.enablePngCrunchInReleaseBuilds=true
30+
2831
# Use this property to specify which architecture you want to build.
2932
# You can also override it from the CLI using
3033
# ./gradlew <task> -PreactNativeArchitectures=x86_64
@@ -59,4 +62,4 @@ android.minSdkVersion=23
5962
android.compileSdkVersion=34
6063
android.targetSdkVersion=34
6164
android.buildToolsVersion=34.0.0
62-
android.extraMavenRepos=[]
65+
android.extraMavenRepos=[]
Loading
Loading
Loading
Loading

demos/django-react-native-todolist/ios/Podfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ target 'powersyncexample' do
2525
:hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
2626
# An absolute path to your application root.
2727
:app_path => "#{Pod::Config.instance.installation_root}/..",
28-
# Temporarily disable privacy file aggregation by default, until React
29-
# Native 0.74.2 is released with fixes.
30-
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] == 'true',
28+
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false',
3129
)
3230

3331
post_install do |installer|

0 commit comments

Comments
 (0)