Skip to content

Commit 208163e

Browse files
author
Martin O'Hanlon
authored
Merge pull request #183 from martinohanlon/dev
Android v 2.2.1
2 parents f018472 + 360733d commit 208163e

File tree

14 files changed

+87
-39
lines changed

14 files changed

+87
-39
lines changed

clients/android/.idea/gradle.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/android/.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/android/.idea/modules.xml

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

clients/android/.idea/runConfigurations.xml

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

clients/android/app/build.gradle

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 29
5-
buildToolsVersion '29.0.2'
4+
compileSdkVersion 33
65
defaultConfig {
76
applicationId "com.stuffaboutcode.bluedot"
87
minSdkVersion 14
9-
targetSdkVersion 29
10-
versionCode 8
11-
versionName "2.1.0"
8+
targetSdkVersion 33
9+
versionCode 10
10+
versionName "2.2.1"
1211
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1312
}
1413
buildTypes {
@@ -21,11 +20,21 @@ android {
2120

2221
dependencies {
2322
implementation fileTree(dir: 'libs', include: ['*.jar'])
24-
implementation 'androidx.preference:preference:1.1.0-alpha05'
23+
implementation 'androidx.preference:preference:1.2.0'
2524
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
2625
exclude group: 'com.android.support', module: 'support-annotations'
2726
})
28-
implementation 'androidx.appcompat:appcompat:1.0.0'
29-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
27+
implementation 'androidx.appcompat:appcompat:1.5.1'
28+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
3029
testImplementation 'junit:junit:4.12'
3130
}
31+
32+
configurations {
33+
34+
all {
35+
36+
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
37+
38+
}
39+
40+
}
1.46 MB
Binary file not shown.
1.52 MB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.stuffaboutcode.bluedot",
8+
"variantName": "release",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"versionCode": 10,
15+
"versionName": "2.2.1",
16+
"outputFile": "app-release.apk"
17+
}
18+
],
19+
"elementType": "File"
20+
}

clients/android/app/release/output.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.stuffaboutcode.bluedot">
44

5-
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
6-
<uses-permission android:name="android.permission.BLUETOOTH" />
5+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"
6+
android:maxSdkVersion="30" />/>
7+
<uses-permission android:name="android.permission.BLUETOOTH"
8+
android:maxSdkVersion="30" />/>
9+
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
10+
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
711

812
<application
913
android:allowBackup="true"
@@ -13,6 +17,7 @@
1317
android:supportsRtl="true"
1418
android:theme="@style/AppTheme">
1519
<activity
20+
android:exported="true"
1621
android:name=".SettingsActivity"
1722
android:label="@string/title_activity_settings"
1823
android:parentActivityName=".Devices">
@@ -21,6 +26,7 @@
2126
android:value="com.stuffaboutcode.bluedot.Devices" />
2227
</activity>
2328
<activity
29+
android:exported="true"
2430
android:name=".Devices"
2531
android:configChanges="orientation|screenSize">
2632
<intent-filter>

0 commit comments

Comments
 (0)