File tree Expand file tree Collapse file tree 4 files changed +641
-277
lines changed
java/org/microbit/android/partialflashing Expand file tree Collapse file tree 4 files changed +641
-277
lines changed Original file line number Diff line number Diff line change @@ -87,3 +87,11 @@ lint/tmp/
87
87
# Android Profiling
88
88
* .hprof
89
89
90
+ # OS-specific files
91
+ .DS_Store
92
+ .DS_Store ?
93
+ ._ *
94
+ .Spotlight-V100
95
+ .Trashes
96
+ ehthumbs.db
97
+ Thumbs.db
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 29
4
+ compileSdk 34
5
5
6
6
defaultConfig {
7
7
minSdkVersion 19
8
- targetSdkVersion 29
8
+ targetSdk 33
9
9
}
10
10
11
11
buildTypes {
@@ -14,6 +14,10 @@ android {
14
14
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.txt'
15
15
}
16
16
}
17
+ namespace ' org.microbit.partialflashing'
18
+ lint {
19
+ abortOnError false
20
+ }
17
21
}
18
22
19
23
dependencies {
Original file line number Diff line number Diff line change 1
1
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" org.microbit.partialflashing"
3
2
android : versionCode =" 1"
4
3
android : versionName =" 1.1" >
5
4
6
- <uses-permission android : name =" android.permission.BLUETOOTH" />
7
- <uses-permission android : name =" android.permission.BLUETOOTH_ADMIN" />
5
+ <uses-permission android : name =" android.permission.BLUETOOTH" android : maxSdkVersion =" 30" />
6
+ <uses-permission android : name =" android.permission.BLUETOOTH_ADMIN" android : maxSdkVersion =" 30" />
7
+
8
+ <!-- API 31 Needed only if your app communicates with already-paired Bluetooth devices. -->
9
+ <uses-permission android : name =" android.permission.BLUETOOTH_CONNECT" />
8
10
</manifest >
You can’t perform that action at this time.
0 commit comments