Skip to content

Commit bbb782d

Browse files
committed
android libs dir
1 parent eecfe0d commit bbb782d

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.11
2+
3+
* android libs dir
4+
15
## 0.0.10+3
26

37
* new lib 0.0.15

android/build.gradle

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package android
1+
//package android
22
// The Android Gradle Plugin builds the native code with the Android NDK.
33

44
group 'cloud.iothub.openiothub_mobile_service'
@@ -8,7 +8,6 @@ buildscript {
88
repositories {
99
google()
1010
mavenCentral()
11-
maven { url 'https://maven.pkg.github.com/OpenIoTHub/gateway-go' }
1211
}
1312

1413
dependencies {
@@ -21,7 +20,9 @@ rootProject.allprojects {
2120
repositories {
2221
google()
2322
mavenCentral()
24-
maven { url 'https://maven.pkg.github.com/OpenIoTHub/gateway-go' }
23+
flatDir {
24+
dirs project(':openiothub_mobile_service').file('libs')
25+
}
2526
}
2627
}
2728

@@ -65,6 +66,14 @@ android {
6566
}
6667
}
6768

69+
repositories {
70+
flatDir {
71+
dirs 'libs'
72+
}
73+
}
74+
6875
dependencies {
69-
implementation 'cloud.iothub:mobile:0.0.15'
76+
// implementation 'cloud.iothub:mobile:0.0.15'
77+
implementation fileTree(include: ['*.jar'], dir: 'libs')
78+
implementation(name: 'mobile', ext: 'aar')
7079
}

android/libs/mobile.aar

49.7 MB
Binary file not shown.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: openiothub_mobile_service
22
description: For OpenIoTHub mobile APP background service
3-
version: 0.0.10+3
3+
version: 0.0.11
44
homepage: https://github.com/OpenIoTHub/openiothub_mobile_service
55
repository: https://github.com/OpenIoTHub/openiothub_mobile_service
66

0 commit comments

Comments
 (0)