Skip to content

Commit 3a296e9

Browse files
Merge pull request #21 from MirrorFly/release/v7.11.0
SDK new version V7.11.0 updated
2 parents 2835cea + 547766e commit 3a296e9

File tree

63 files changed

+1843
-496
lines changed

Some content is hidden

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

63 files changed

+1843
-496
lines changed

.gitignore

Lines changed: 0 additions & 60 deletions
This file was deleted.

.idea/workspace.xml

Lines changed: 0 additions & 255 deletions
This file was deleted.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ android {
3535
targetSdkVersion 33
3636
compileSdk(33)
3737
versionCode 16
38-
versionName "7.10.0"
38+
versionName "7.11.0"
3939
multiDexEnabled true
4040
buildConfigField "java.util.Date", "BUILD_TIME", "new java.util.Date(" + System.currentTimeMillis() + "L)"
4141
vectorDrawables.useSupportLibrary = true
@@ -203,7 +203,7 @@ dependencies {
203203
implementation project(':sdk:googletranslation')
204204
implementation project(path: ':call')
205205

206-
implementation 'com.mirrorfly.sdk:mirrorflysdk:7.10.0'
206+
implementation 'com.mirrorfly.sdk:mirrorflysdk:7.11.0'
207207

208208
//Socket - versions.gradle
209209
implementation 'com.github.nkzawa:socket.io-client:0.6.0'

app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
android:theme="@style/MyTheme"
7171
android:usesCleartextTraffic="true"
7272
tools:replace="android:label,android:allowBackup">
73+
<activity
74+
android:name=".activities.EditMessageActivity"
75+
android:exported="false"
76+
android:theme="@style/TransparentTheme"
77+
android:windowSoftInputMode="adjustResize" />
7378
<activity
7479
android:name=".privateChat.PrivateChatListActivity"
7580
android:exported="false" />
@@ -243,6 +248,7 @@
243248
-->
244249
<activity
245250
android:name=".call.groupcall.GroupCallActivity"
251+
android:exported="false"
246252
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
247253
android:excludeFromRecents="true"
248254
android:launchMode="singleTask"
@@ -255,7 +261,7 @@
255261
android:taskAffinity="call.video"
256262
android:turnScreenOn="true"
257263
android:windowSoftInputMode="stateHidden"
258-
tools:targetApi="R" />
264+
tools:targetApi="R"/>
259265
<activity
260266
android:name=".call.calllog.CallHistoryDetailActivity"
261267
android:screenOrientation="portrait" /> <!-- <activity -->
@@ -295,9 +301,9 @@
295301
android:screenOrientation="portrait" />
296302
<activity
297303
android:name=".call.groupcall.OnGoingCallPreviewActivity"
298-
android:windowSoftInputMode="stateAlwaysHidden"
299304
android:exported="false"
300-
android:screenOrientation="portrait" />
305+
android:screenOrientation="portrait"
306+
android:windowSoftInputMode="stateAlwaysHidden" />
301307
<activity
302308
android:name=".activities.UserListActivity"
303309
android:exported="false"

0 commit comments

Comments
 (0)