Skip to content

Commit

Permalink
Merge pull request #14 from AgoraIO-Usecase/dev
Browse files Browse the repository at this point in the history
merge dev into main.
  • Loading branch information
dujiepeng authored Nov 17, 2023
2 parents 9bdd018 + 26d4ecc commit cf0fd80
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 1,309 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release
/example/iOS/Podfile.lock
/example/iOS/Podfile.lock
/example/pubspec.lock
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
group 'com.example.agora_chat_uikit'
group 'com.ease.em_chat_uikit'
version '1.0'

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.agora_chat_uikit">
package="com.ease.em_chat_uikit">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.agora_chat_uikit;
package com.ease.em_chat_uikit;

import androidx.annotation.NonNull;

Expand All @@ -24,11 +24,7 @@ public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBindin

@Override
public void onMethodCall(@NonNull MethodCall call, @NonNull Result result) {
if (call.method.equals("getPlatformVersion")) {
result.success("Android " + android.os.Build.VERSION.RELEASE);
} else {
result.notImplemented();
}
result.notImplemented();
}

@Override
Expand Down

This file was deleted.

Loading

0 comments on commit cf0fd80

Please sign in to comment.