Skip to content

Commit

Permalink
Vapt fixes (#1700)
Browse files Browse the repository at this point in the history
* Added vapt fixes

* released sample app version 1.5.128 (428) 🍀

* 🤖 Automated Format and Fix

---------

Co-authored-by: Decoder07 <[email protected]>
  • Loading branch information
Decoder07 and Decoder07 authored Jan 29, 2024
1 parent 6a19279 commit d7d78fc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
7 changes: 4 additions & 3 deletions packages/hmssdk_flutter/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 33

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
Expand All @@ -32,8 +31,8 @@ android {
applicationId "live.hms.flutter"
minSdkVersion 21
targetSdkVersion 33
versionCode 427
versionName "1.5.127"
versionCode 428
versionName "1.5.128"
}

signingConfigs {
Expand All @@ -42,6 +41,8 @@ android {
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
enableV1Signing false
enableV2Signing true
}
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />

<application
android:label="100ms Video Calling Streaming"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="false"
android:hardwareAccelerated="true"
android:requestLegacyExternalStorage="true">
android:allowBackup="false"
android:hasFragileUserData="false">
<activity
android:name=".MainActivity"
android:launchMode="singleTask"
Expand All @@ -36,6 +37,7 @@
android:windowSoftInputMode="adjustResize"
android:exported="true"
android:supportsPictureInPicture="true"
android:taskAffinity=""
>
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
Expand Down Expand Up @@ -64,7 +66,8 @@
</activity>
<service android:name="com.pravera.flutter_foreground_task.service.ForegroundService"
android:foregroundServiceType="camera|microphone"
android:stopWithTask="true" />
android:stopWithTask="true"
exported="false" />

<!--Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
Expand Down
2 changes: 1 addition & 1 deletion packages/hmssdk_flutter/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ SPEC CHECKSUMS:
FirebaseRemoteConfig: b873a427a48159082361343a85649eed3f5377ea
FirebaseSessions: 2f348975f6d1c139231c180e12194161da2e0cd6
FirebaseSharedSwift: 2fbf73618288b7a36b2014b957745dcdd781389e
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_foreground_task: 21ef182ab0a29a3005cc72cd70e5f45cb7f7f817
GoogleDataTransport: 57c22343ab29bc686febbf7cbb13bad167c2d8fe
GoogleUtilities: 0759d1a57ebb953965c2dfe0ba4c82e95ccc2e34
Expand Down
6 changes: 3 additions & 3 deletions packages/hmssdk_flutter/example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.127</string>
<string>1.5.128</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -48,7 +48,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>427</string>
<string>428</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
Expand All @@ -57,7 +57,7 @@
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSBluetoothAlwaysUsageDescription</key>
Expand Down

0 comments on commit d7d78fc

Please sign in to comment.