Skip to content

Commit 02f49b5

Browse files
Release/v1.1.2 (#29)
* chore: Bridgefy android 1.1.0 -> 1.1.1 * chore: update kotlin dependecies * chore: remove package * chore: MainActivity registered * chore: SDK Android 1.1.1 * chore: update doc * chore: update test
1 parent d5e73cf commit 02f49b5

18 files changed

+23
-79
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bridgefy Flutter 1.1.1
1+
# Bridgefy Flutter 1.1.2
22
### BLUETOOTH MESH NETWORKS
33

44
Devices running your app create Bluetooth Low-Energy mesh networks, which work in large crowds, during and after natural disasters, and whenever else your users lose access to the Internet.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To install this SDK, you'll need to either add the following to your `pubspec.ya
4444

4545
```yaml
4646
dependencies:
47-
bridgefy: ^1.1.1
47+
bridgefy: ^1.1.2
4848
```
4949
5050
Or run this flutter command:

android/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'me.bridgefy.plugin.flutter'
22
version '1.0.0'
33

44
buildscript {
5-
ext.kotlin_version = '1.9.0'
5+
ext.kotlin_version = '1.9.10'
66
repositories {
77
google()
88
mavenCentral()
@@ -35,7 +35,7 @@ apply plugin: 'kotlin-android'
3535

3636
android {
3737
compileSdkVersion 34
38-
38+
namespace 'me.bridgefy.plugin.flutter'
3939
compileOptions {
4040
sourceCompatibility JavaVersion.VERSION_1_8
4141
targetCompatibility JavaVersion.VERSION_1_8
@@ -55,9 +55,7 @@ android {
5555
}
5656

5757
dependencies {
58-
implementation (group: "me.bridgefy", name: "android-sdk", version: "1.1.0", ext: "aar") {
58+
implementation (group: "me.bridgefy", name: "android-sdk", version: "1.1.1", ext: "aar") {
5959
transitive = true
6060
}
61-
implementation "androidx.preference:preference-ktx:1.2.0"
62-
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
6361
}

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
xmlns:tools="http://schemas.android.com/tools"
3-
package="me.bridgefy.plugin.flutter">
2+
xmlns:tools="http://schemas.android.com/tools">
43
<uses-permission-sdk-23 android:name="android.permission.ACCESS_COARSE_LOCATION" android:maxSdkVersion="30" tools:node="replace" />
54
<uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATION" android:maxSdkVersion="33" tools:node="replace" />
65
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" android:maxSdkVersion="30" />

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ android {
4444

4545
defaultConfig {
4646
applicationId "me.bridgefy.android.sample"
47+
namespace "me.bridgefy.android.sample"
4748
// You can update the following values to match your application needs.
4849
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
4950
minSdkVersion 21
@@ -67,5 +68,4 @@ flutter {
6768

6869
dependencies {
6970
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
70-
implementation "androidx.work:work-runtime-ktx:2.8.1"
7171
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="me.bridgefy.bridgefy_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="me.bridgefy.bridgefy_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<application
43
android:label="Bridgefy example"
54
android:name="${applicationName}"
65
android:icon="@mipmap/ic_launcher">
76
<activity
8-
android:name=".MainActivity"
7+
android:name="me.bridgefy.bridgefy_example.MainActivity"
98
android:exported="true"
109
android:launchMode="singleTop"
1110
android:theme="@style/LaunchTheme"
@@ -27,7 +26,7 @@
2726
</activity>
2827
<meta-data
2928
android:name="com.bridgefy.sdk.API_KEY"
30-
android:value="YOUR_APIKEY" />
29+
android:value="YOUR_API_KEY_HERE" />
3130
<!-- Don't delete the meta-data below.
3231
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
3332
<meta-data

example/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="me.bridgefy.bridgefy_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
2-
ext.kotlin_version = '1.9.0'
2+
ext.kotlin_version = '1.9.10'
33
repositories {
44
google()
55
mavenCentral()
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.2.0'
9+
classpath 'com.android.tools.build:gradle:8.1.2'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip

0 commit comments

Comments
 (0)