Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 834083c

Browse files
bump version for flutter-webrtc.
1 parent 1e8de63 commit 834083c

File tree

80 files changed

+852
-382
lines changed

Some content is hidden

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

80 files changed

+852
-382
lines changed

‎example/.metadata‎

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,27 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: 7e9793dee1b85a243edd0e06cb1658e98b077561
8-
channel: stable
7+
revision: "8defaa71a77c16e8547abdbfad2053ce3a6e2d5b"
8+
channel: "stable"
99

1010
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: 8defaa71a77c16e8547abdbfad2053ce3a6e2d5b
17+
base_revision: 8defaa71a77c16e8547abdbfad2053ce3a6e2d5b
18+
- platform: linux
19+
create_revision: 8defaa71a77c16e8547abdbfad2053ce3a6e2d5b
20+
base_revision: 8defaa71a77c16e8547abdbfad2053ce3a6e2d5b
21+
22+
# User provided section
23+
24+
# List of Local paths (relative to this file) that should be
25+
# ignored by the migrate tool.
26+
#
27+
# Files that are not part of the templates will be ignored by default.
28+
unmanaged_files:
29+
- 'lib/main.dart'
30+
- 'ios/Runner.xcodeproj/project.pbxproj'

‎example/android/.gitignore‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8+
.cxx/
89

910
# Remember to never publicly share your keystore.
10-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
# See https://flutter.dev/to/reference-keystore
1112
key.properties
1213
**/*.keystore
1314
**/*.jks

‎example/android/app/build.gradle‎

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

‎example/android/app/build.gradle.kts‎

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
plugins {
2+
id("com.android.application")
3+
id("kotlin-android")
4+
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+
id("dev.flutter.flutter-gradle-plugin")
6+
}
7+
8+
android {
9+
namespace = "com.github.flutterwhip.example.flutter_whip_example_app"
10+
compileSdk = flutter.compileSdkVersion
11+
ndkVersion = flutter.ndkVersion
12+
13+
compileOptions {
14+
sourceCompatibility = JavaVersion.VERSION_11
15+
targetCompatibility = JavaVersion.VERSION_11
16+
}
17+
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_11.toString()
20+
}
21+
22+
defaultConfig {
23+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+
applicationId = "com.github.flutterwhip.example.flutter_whip_example_app"
25+
// You can update the following values to match your application needs.
26+
// For more information, see: https://flutter.dev/to/review-gradle-config.
27+
minSdk = flutter.minSdkVersion
28+
targetSdk = flutter.targetSdkVersion
29+
versionCode = flutter.versionCode
30+
versionName = flutter.versionName
31+
}
32+
33+
buildTypes {
34+
release {
35+
// TODO: Add your own signing config for the release build.
36+
// Signing with the debug keys for now, so `flutter run --release` works.
37+
signingConfig = signingConfigs.getByName("debug")
38+
}
39+
}
40+
}
41+
42+
flutter {
43+
source = "../.."
44+
}

‎example/android/app/src/debug/AndroidManifest.xml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.cloudwebrtc.flutterwhip.example.flutter_whip_example_app">
3-
<!--Flutter needs it to communicate with the running application
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- The INTERNET permission is required for development. Specifically,
3+
the Flutter tool needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->
66
<uses-permission android:name="android.permission.INTERNET"/>

‎example/android/app/src/main/AndroidManifest.xml‎

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.cloudwebrtc.flutterwhip.example.flutter_whip_example_app">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<uses-permission android:name="android.permission.CAMERA" />
43
<uses-permission android:name="android.permission.RECORD_AUDIO" />
54
<uses-permission android:name="android.permission.WAKE_LOCK" />
65
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
76
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
87
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
98
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
10-
<application
9+
<application
1110
android:label="flutter_whip_example_app"
1211
android:name="${applicationName}"
1312
android:icon="@mipmap/ic_launcher">
1413
<activity
1514
android:name=".MainActivity"
1615
android:exported="true"
1716
android:launchMode="singleTop"
17+
android:taskAffinity=""
1818
android:theme="@style/LaunchTheme"
1919
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
2020
android:hardwareAccelerated="true"
@@ -38,4 +38,15 @@
3838
android:name="flutterEmbedding"
3939
android:value="2" />
4040
</application>
41+
<!-- Required to query activities that can process text, see:
42+
https://developer.android.com/training/package-visibility and
43+
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
44+
45+
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
46+
<queries>
47+
<intent>
48+
<action android:name="android.intent.action.PROCESS_TEXT"/>
49+
<data android:mimeType="text/plain"/>
50+
</intent>
51+
</queries>
4152
</manifest>

‎example/android/app/src/main/java/com/cloudwebrtc/flutterwhip/example/flutter_whip_example_app/MainActivity.java‎

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.github.flutterwhip.example.flutter_whip_example_app
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity : FlutterActivity()

‎example/android/app/src/main/res/values-night/styles.xml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
44
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
55
<!-- Show a splash screen on the activity. Automatically removed when
6-
Flutter draws its first frame -->
6+
the Flutter engine draws its first frame -->
77
<item name="android:windowBackground">@drawable/launch_background</item>
88
</style>
99
<!-- Theme applied to the Android Window as soon as the process has started.

‎example/android/app/src/main/res/values/styles.xml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
44
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
55
<!-- Show a splash screen on the activity. Automatically removed when
6-
Flutter draws its first frame -->
6+
the Flutter engine draws its first frame -->
77
<item name="android:windowBackground">@drawable/launch_background</item>
88
</style>
99
<!-- Theme applied to the Android Window as soon as the process has started.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /