Skip to content

Commit 3c0ab64

Browse files
authored
Prepare release 67 (#481)
* Add workaround for latest Koin release adding unnecessary permissions * Prepare release 39.0.5 (67)
1 parent a23af00 commit 3c0ab64

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

androidApp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ android {
3333
applicationId = "com.jetbrains.kotlinconf"
3434
targetSdk = libs.versions.android.targetSdk.get().toInt()
3535
minSdk = libs.versions.android.minSdk.get().toInt()
36-
versionCode = 66
37-
versionName = "39.0.4"
36+
versionCode = 67
37+
versionName = "39.0.5"
3838

3939
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
4040
}

androidApp/src/androidMain/AndroidManifest.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
33

44
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
55
<uses-permission android:name="android.permission.INTERNET"/>
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
77

8+
<!-- TODO remove these once https://github.com/JetBrains/kotlinconf-app/issues/480 is fixed -->
9+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove"/>
10+
<uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove"/>
11+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove"/>
12+
813
<application
914
android:allowBackup="true"
1015
android:dataExtractionRules="@xml/data_extraction_rules"

iosApp/KotlinConf.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
CODE_SIGN_IDENTITY = "Apple Development";
335335
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
336336
CODE_SIGN_STYLE = Manual;
337-
CURRENT_PROJECT_VERSION = 66;
337+
CURRENT_PROJECT_VERSION = 67;
338338
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
339339
DEVELOPMENT_TEAM = "";
340340
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 2ZEFAR8TH3;
@@ -350,7 +350,7 @@
350350
"$(inherited)",
351351
"@executable_path/Frameworks",
352352
);
353-
MARKETING_VERSION = 39.0.4;
353+
MARKETING_VERSION = 39.0.5;
354354
OTHER_LDFLAGS = (
355355
"$(inherited)",
356356
"-framework",
@@ -378,7 +378,7 @@
378378
CODE_SIGN_IDENTITY = "Apple Development";
379379
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
380380
CODE_SIGN_STYLE = Manual;
381-
CURRENT_PROJECT_VERSION = 66;
381+
CURRENT_PROJECT_VERSION = 67;
382382
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
383383
DEVELOPMENT_TEAM = "";
384384
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 2ZEFAR8TH3;
@@ -394,7 +394,7 @@
394394
"$(inherited)",
395395
"@executable_path/Frameworks",
396396
);
397-
MARKETING_VERSION = 39.0.4;
397+
MARKETING_VERSION = 39.0.5;
398398
OTHER_LDFLAGS = (
399399
"$(inherited)",
400400
"-framework",

iosApp/iosApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>39.0.4</string>
20+
<string>39.0.5</string>
2121
<key>CFBundleVersion</key>
22-
<string>66</string>
22+
<string>67</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>MBXAccessToken</key>

shared/src/commonMain/composeResources/files/aboutlibraries.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_version">39.0.4 (66)</string>
2+
<string name="app_version">39.0.5 (67)</string>
33
</resources>

0 commit comments

Comments
 (0)