Skip to content

Commit 739d82c

Browse files
feat: implement new splash screen static version
1 parent b70dd2f commit 739d82c

File tree

23 files changed

+115
-25
lines changed

23 files changed

+115
-25
lines changed

android/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ dependencies {
310310
implementation "com.facebook.react:react-native:+" // From node_modules
311311

312312
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
313+
implementation "androidx.core:core-splashscreen:1.0.0"
313314

314315
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
315316
exclude group:'com.facebook.fbjni'

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
android:allowBackup="false"
3030
android:label="@string/app_name"
3131
android:icon="@mipmap/ic_launcher"
32-
android:theme="@style/AppTheme"
32+
android:theme="@style/Theme.AppSplash"
3333
android:name=".MainApplication"
3434
android:largeHeap="true"
3535
android:usesCleartextTraffic="true">
@@ -38,6 +38,7 @@
3838
android:name=".MainActivity"
3939
android:exported="true"
4040
android:label="@string/app_name"
41+
android:theme="@style/Theme.AppSplash"
4142
android:screenOrientation="portrait"
4243
android:windowSoftInputMode="adjustResize"
4344
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"

android/app/src/main/java/im/status/ethereum/MainActivity.java

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import android.content.res.Configuration;
2222
import android.provider.Settings;
2323
import android.os.Bundle;
24+
import android.os.Handler;
2425
import com.facebook.react.ReactActivityDelegate;
2526
import com.facebook.react.ReactRootView;
2627
import com.facebook.react.modules.core.DeviceEventManagerModule;
@@ -31,7 +32,7 @@
3132
import com.facebook.react.ReactFragmentActivity;
3233
import com.reactnativenavigation.NavigationActivity;
3334
import com.facebook.react.modules.core.PermissionListener;
34-
import org.devio.rn.splashscreen.SplashScreen;
35+
import androidx.core.splashscreen.SplashScreen;
3536

3637
import java.util.Properties;
3738
import im.status.ethereum.module.StatusThreadPoolExecutor;
@@ -42,6 +43,8 @@ public class MainActivity extends NavigationActivity
4243

4344

4445
@Nullable private PermissionListener mPermissionListener;
46+
private boolean keepSplash = true;
47+
private final int SPLASH_DELAY = 3200;
4548

4649
private static void registerUncaughtExceptionHandler(final Context context) {
4750
final Thread.UncaughtExceptionHandler defaultUncaughtExceptionHandler = Thread.getDefaultUncaughtExceptionHandler();
@@ -121,21 +124,8 @@ public void onNewIntent(final Intent intent) {
121124

122125
@Override
123126
protected void onCreate(Bundle savedInstanceState) {
124-
125-
switch (getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) {
126-
case Configuration.UI_MODE_NIGHT_YES:
127-
setTheme(R.style.DarkTheme);
128-
SplashScreen.show(this, R.style.DarkTheme, R.id.lottie);
129-
break;
130-
case Configuration.UI_MODE_NIGHT_NO:
131-
setTheme(R.style.LightTheme);
132-
SplashScreen.show(this, R.style.LightTheme, R.id.lottie);
133-
break;
134-
default:
135-
setTheme(R.style.LightTheme);
136-
SplashScreen.show(this, R.style.LightTheme, R.id.lottie);
137-
}
138-
SplashScreen.setAnimationFinished(true);
127+
SplashScreen splashScreen = SplashScreen.installSplashScreen(this);
128+
setTheme(R.style.DarkTheme);
139129
// Make sure we get an Alert for every uncaught exceptions
140130
registerUncaughtExceptionHandler(MainActivity.this);
141131

@@ -197,6 +187,11 @@ public void run() {
197187
}
198188
};
199189

190+
splashScreen.setKeepOnScreenCondition(() -> keepSplash);
191+
192+
Handler handler = new Handler();
193+
handler.postDelayed(() -> keepSplash = false, SPLASH_DELAY);
194+
200195
StatusThreadPoolExecutor.getInstance().execute(r);
201196
}
202197

Loading
Loading
Loading
Loading
Loading

android/app/src/main/res/values/colors.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
<resources>
33
<color name="alert_background">#ffffff</color>
44
<color name="alert_text">#000000</color>
5+
<color name="splash_background">#09101C</color>
6+
<color name="splash_status_bar_color">#ffffff</color>
57
</resources>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<resources xmlns:tools="http://schemas.android.com/tools">
2+
<style name="Theme.AppSplash" parent="Theme.SplashScreen">
3+
<item name="windowSplashScreenBackground">@color/splash_background</item>
4+
<item name="windowSplashScreenAnimatedIcon">@drawable/splash_logo</item>
5+
<item name="windowSplashScreenAnimationDuration">1000</item>
6+
7+
<!-- Status bar and Nav bar configs -->
8+
<item name="android:statusBarColor" tools:targetApi="l">@color/splash_background</item>
9+
<item name="android:windowLightStatusBar">false</item>
10+
11+
<item name="postSplashScreenTheme">@style/DarkTheme</item>
12+
</style>
13+
</resources>

ios/StatusIm.xcodeproj/project.pbxproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@
4949
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */; };
5050
BA68A2377A20496EA737000D /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E586E1B0E544F64AA9F5BD1 /* libz.tbd */; };
5151
BFF6343F5A1F0F5FFFC8D020 /* libPods-Status-StatusIm-StatusImTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A4B974811E312E44D5BBE9EC /* libPods-Status-StatusIm-StatusImTests.a */; };
52+
C14C5F8D29C0A149005C58A7 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F8C29C0A149005C58A7 /* [email protected] */; };
53+
C14C5F9129C0AD9C005C58A7 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F9029C0AD9C005C58A7 /* [email protected] */; };
54+
C14C5F9329C0ADB5005C58A7 /* launch-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F9229C0ADB5005C58A7 /* launch-icon.png */; };
55+
C1715FFA29C0BCE10088FA8B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F9029C0AD9C005C58A7 /* [email protected] */; };
56+
C1715FFB29C0BCE50088FA8B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F8C29C0A149005C58A7 /* [email protected] */; };
57+
C1715FFC29C0BCE80088FA8B /* launch-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = C14C5F9229C0ADB5005C58A7 /* launch-icon.png */; };
5258
CE4E31B31D8695250033ED64 /* Statusgo.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE4E31B21D8695250033ED64 /* Statusgo.xcframework */; };
5359
D1786306E0184916B11F4C37 /* Inter-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = B2A38FC3D3954DE7B2B171F8 /* Inter-Medium.otf */; };
5460
D84616FB563A48EBB1678699 /* Inter-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */; };
@@ -142,6 +148,9 @@
142148
B2A38FC3D3954DE7B2B171F8 /* Inter-Medium.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Medium.otf"; path = "../resources/fonts/Inter-Medium.otf"; sourceTree = "<group>"; };
143149
B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = StatusIm/Images.xcassets; sourceTree = "<group>"; };
144150
B321D25F4493470980039457 /* Inter-BoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-BoldItalic.otf"; path = "../resources/fonts/Inter-BoldItalic.otf"; sourceTree = "<group>"; };
151+
C14C5F8C29C0A149005C58A7 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "StatusIm/[email protected]"; sourceTree = "<group>"; };
152+
C14C5F9029C0AD9C005C58A7 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "StatusIm/[email protected]"; sourceTree = "<group>"; };
153+
C14C5F9229C0ADB5005C58A7 /* launch-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon.png"; path = "StatusIm/launch-icon.png"; sourceTree = "<group>"; };
145154
C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-MediumItalic.otf"; path = "../resources/fonts/Inter-MediumItalic.otf"; sourceTree = "<group>"; };
146155
CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Bold.otf"; path = "../resources/fonts/Inter-Bold.otf"; sourceTree = "<group>"; };
147156
CE4E31B21D8695250033ED64 /* Statusgo.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Statusgo.xcframework; path = "../modules/react-native-status/ios/RCTStatus/Statusgo.xcframework"; sourceTree = "<group>"; };
@@ -206,6 +215,9 @@
206215
13B07FAE1A68108700A75B9A /* StatusIm */ = {
207216
isa = PBXGroup;
208217
children = (
218+
C14C5F9229C0ADB5005C58A7 /* launch-icon.png */,
219+
C14C5F9029C0AD9C005C58A7 /* [email protected] */,
220+
C14C5F8C29C0A149005C58A7 /* [email protected] */,
209221
922C4CA61F4D5F8B0033C753 /* StatusIm.entitlements */,
210222
B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */,
211223
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
@@ -477,8 +489,10 @@
477489
isa = PBXResourcesBuildPhase;
478490
buildActionMask = 2147483647;
479491
files = (
492+
C14C5F9329C0ADB5005C58A7 /* launch-icon.png in Resources */,
480493
74B758FC20D7C00B003343C3 /* launch-image-universal.storyboard in Resources */,
481494
715D8132290BE850006F5C88 /* UbuntuMono-Regular.ttf in Resources */,
495+
C14C5F9129C0AD9C005C58A7 /* [email protected] in Resources */,
482496
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */,
483497
D84616FB563A48EBB1678699 /* Inter-Bold.otf in Resources */,
484498
D99C50E5E18942A39C8DDF61 /* Inter-BoldItalic.otf in Resources */,
@@ -489,6 +503,7 @@
489503
70ADBB5ECF934DCF8A0E4919 /* Inter-Regular.otf in Resources */,
490504
3870E1E692E24133A80B07DE /* Inter-SemiBold.otf in Resources */,
491505
8391E8E0E93C41A98AAA6631 /* Inter-SemiBoldItalic.otf in Resources */,
506+
C14C5F8D29C0A149005C58A7 /* [email protected] in Resources */,
492507
);
493508
runOnlyForDeploymentPostprocessing = 0;
494509
};
@@ -501,13 +516,16 @@
501516
3AAD2ACB24A3A60E0075D594 /* Images.xcassets in Resources */,
502517
3AAD2ACC24A3A60E0075D594 /* Inter-Bold.otf in Resources */,
503518
3AAD2ACD24A3A60E0075D594 /* Inter-BoldItalic.otf in Resources */,
519+
C1715FFA29C0BCE10088FA8B /* [email protected] in Resources */,
504520
3AAD2ACE24A3A60E0075D594 /* InterStatus-Regular.otf in Resources */,
505521
3AAD2ACF24A3A60E0075D594 /* Inter-Italic.otf in Resources */,
506522
3AAD2AD024A3A60E0075D594 /* Inter-Medium.otf in Resources */,
507523
3AAD2AD124A3A60E0075D594 /* Inter-MediumItalic.otf in Resources */,
508524
3AAD2AD224A3A60E0075D594 /* Inter-Regular.otf in Resources */,
525+
C1715FFC29C0BCE80088FA8B /* launch-icon.png in Resources */,
509526
3AAD2AD324A3A60E0075D594 /* Inter-SemiBold.otf in Resources */,
510527
3AAD2AD424A3A60E0075D594 /* Inter-SemiBoldItalic.otf in Resources */,
528+
C1715FFB29C0BCE50088FA8B /* [email protected] in Resources */,
511529
);
512530
runOnlyForDeploymentPostprocessing = 0;
513531
};
Loading
Loading
Loading

ios/StatusIm/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@
119119
<array>
120120
<string>armv7</string>
121121
</array>
122+
<key>UIStatusBarStyle</key>
123+
<string>UIStatusBarStyleLightContent</string>
122124
<key>UISupportedInterfaceOrientations</key>
123125
<array>
124126
<string>UIInterfaceOrientationPortrait</string>

ios/StatusIm/launch-icon.png

1.19 KB
Loading

ios/StatusIm/[email protected]

2.52 KB
Loading

ios/StatusIm/[email protected]

3.7 KB
Loading

ios/StatusImPR/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@
123123
<string>armv7</string>
124124
<string>gamekit</string>
125125
</array>
126+
<key>UIStatusBarStyle</key>
127+
<string>UIStatusBarStyleLightContent</string>
126128
<key>UISupportedInterfaceOrientations</key>
127129
<array>
128130
<string>UIInterfaceOrientationPortrait</string>

ios/launch-image-universal.storyboard

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="20037" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="Lsa-QA-3zn">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21507" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="Lsa-QA-3zn">
33
<device id="retina4_7" orientation="portrait" appearance="light"/>
44
<dependencies>
55
<deployment identifier="iOS"/>
6-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="20020"/>
7-
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
6+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21505"/>
87
<capability name="System colors in document resources" minToolsVersion="11.0"/>
98
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
109
</dependencies>
@@ -17,14 +16,20 @@
1716
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
1817
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
1918
<subviews>
20-
<imageView userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="launch_image" translatesAutoresizingMaskIntoConstraints="NO" id="cqW-9w-FC0">
19+
<imageView userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="launch-icon.png" translatesAutoresizingMaskIntoConstraints="NO" id="cqW-9w-FC0">
2120
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
22-
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" heightSizable="YES" flexibleMaxY="YES"/>
23-
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
21+
<color key="backgroundColor" red="0.035294117647058823" green="0.062745098039215685" blue="0.10980392156862745" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
2422
</imageView>
2523
</subviews>
26-
<viewLayoutGuide key="safeArea" id="2aN-f8-qiu"/>
2724
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
25+
<constraints>
26+
<constraint firstAttribute="bottom" secondItem="cqW-9w-FC0" secondAttribute="bottom" id="2Ue-hX-Tna"/>
27+
<constraint firstAttribute="trailing" secondItem="cqW-9w-FC0" secondAttribute="trailing" id="Sfz-tk-PSg"/>
28+
<constraint firstItem="cqW-9w-FC0" firstAttribute="leading" secondItem="0g6-xG-Wkj" secondAttribute="leading" id="UQo-dC-xeN"/>
29+
<constraint firstItem="cqW-9w-FC0" firstAttribute="top" secondItem="0g6-xG-Wkj" secondAttribute="top" id="YrE-J2-QHf"/>
30+
<constraint firstItem="cqW-9w-FC0" firstAttribute="centerX" secondItem="0g6-xG-Wkj" secondAttribute="centerX" id="ZQS-4G-GAL"/>
31+
<constraint firstItem="cqW-9w-FC0" firstAttribute="centerY" secondItem="0g6-xG-Wkj" secondAttribute="centerY" id="noT-Rj-8Uy"/>
32+
</constraints>
2833
</view>
2934
</viewController>
3035
<placeholder placeholderIdentifier="IBFirstResponder" id="hOp-FG-FML" userLabel="First Responder" sceneMemberID="firstResponder"/>
@@ -33,7 +38,7 @@
3338
</scene>
3439
</scenes>
3540
<resources>
36-
<image name="launch_image" width="90" height="101"/>
41+
<image name="launch-icon.png" width="84" height="88"/>
3742
<systemColor name="systemBackgroundColor">
3843
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
3944
</systemColor>

nix/deps/gradle/deps.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,21 @@
479479
}
480480
},
481481

482+
{
483+
"path": "androidx/core/core-splashscreen/1.0.0",
484+
"repo": "https://dl.google.com/dl/android/maven2",
485+
"files": {
486+
"core-splashscreen-1.0.0.pom": {
487+
"sha1": "763acf4fa60a08a3c059a4c50d3d54ac34a0cfa2",
488+
"sha256": "0arxyx9zlzwlr0h88xmgzlgbjfp3s79pd7mbk3ipfqwkfgbzzmq3"
489+
},
490+
"core-splashscreen-1.0.0.aar": {
491+
"sha1": "6b1eccca966811faafb13f6c2f88351504dc9eae",
492+
"sha256": "0wiarwyh5rk7ca54b0i47rs7ix49r2krrvhiqamw8gyaq4yv51iy"
493+
}
494+
}
495+
},
496+
482497
{
483498
"path": "androidx/core/core/1.0.0",
484499
"repo": "https://dl.google.com/dl/android/maven2",
@@ -10572,6 +10587,21 @@
1057210587
}
1057310588
},
1057410589

10590+
{
10591+
"path": "org/jetbrains/kotlin/kotlin-stdlib-common/1.6.21",
10592+
"repo": "https://repo.maven.apache.org/maven2",
10593+
"files": {
10594+
"kotlin-stdlib-common-1.6.21.pom": {
10595+
"sha1": "747a8ea8a8a4328946cf0252c5ceb2aa0ceb054f",
10596+
"sha256": "18kbabqzyiv5rzcvxzn28wsk6cxnh7aliiayian2sg7xfgp5dhav"
10597+
},
10598+
"kotlin-stdlib-common-1.6.21.jar": {
10599+
"sha1": "5e5b55c26dbc80372a920aef60eb774b714559b8",
10600+
"sha256": "0qr34h6pkf6bw6vagc06y78ln6gikj3qq3hrgfai8flzrmcyqfqq"
10601+
}
10602+
}
10603+
},
10604+
1057510605
{
1057610606
"path": "org/jetbrains/kotlin/kotlin-stdlib-common/1.7.10",
1057710607
"repo": "https://repo.maven.apache.org/maven2",
@@ -11022,6 +11052,21 @@
1102211052
}
1102311053
},
1102411054

11055+
{
11056+
"path": "org/jetbrains/kotlin/kotlin-stdlib/1.6.21",
11057+
"repo": "https://repo.maven.apache.org/maven2",
11058+
"files": {
11059+
"kotlin-stdlib-1.6.21.pom": {
11060+
"sha1": "f44be76009ce4253eaa59b914f4dccc384442016",
11061+
"sha256": "0d0zmvx7znha69ir50z72n7nzgw4yr6rfzb6mb6kdn0vl1dp4hnf"
11062+
},
11063+
"kotlin-stdlib-1.6.21.jar": {
11064+
"sha1": "11ef67f1900634fd951bad28c53ec957fabbe5b8",
11065+
"sha256": "14m428q4m7y8srb7z5m0qfq8ic3f62layqwgn9rpacxvf9k5573k"
11066+
}
11067+
}
11068+
},
11069+
1102511070
{
1102611071
"path": "org/jetbrains/kotlin/kotlin-stdlib/1.7.10",
1102711072
"repo": "https://repo.maven.apache.org/maven2",

nix/deps/gradle/deps.list

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ androidx.constraintlayout:constraintlayout:2.0.4
2525
androidx.coordinatorlayout:coordinatorlayout:1.0.0
2626
androidx.coordinatorlayout:coordinatorlayout:1.1.0
2727
androidx.core:core-ktx:1.6.0
28+
androidx.core:core-splashscreen:1.0.0
2829
androidx.core:core:1.0.1
2930
androidx.core:core:1.1.0
3031
androidx.core:core:1.6.0
@@ -517,6 +518,7 @@ org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50
517518
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.31
518519
org.jetbrains.kotlin:kotlin-stdlib-common:1.5.10
519520
org.jetbrains.kotlin:kotlin-stdlib-common:1.5.30
521+
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21
520522
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
521523
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.20
522524
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50
@@ -536,6 +538,7 @@ org.jetbrains.kotlin:kotlin-stdlib:1.3.50
536538
org.jetbrains.kotlin:kotlin-stdlib:1.4.31
537539
org.jetbrains.kotlin:kotlin-stdlib:1.5.10
538540
org.jetbrains.kotlin:kotlin-stdlib:1.5.30
541+
org.jetbrains.kotlin:kotlin-stdlib:1.6.21
539542
org.jetbrains.kotlin:kotlin-util-io:1.3.50
540543
org.jetbrains.kotlin:kotlin-util-io:1.4.31
541544
org.jetbrains.kotlin:kotlin-util-klib:1.4.31

0 commit comments

Comments
 (0)