Skip to content

Commit

Permalink
Update targetSDK to 33
Browse files Browse the repository at this point in the history
  • Loading branch information
graham22 committed Aug 23, 2023
1 parent 5c537f1 commit 45fa1e8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 22 deletions.
6 changes: 3 additions & 3 deletions code/Android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
buildToolsVersion "28.0.3"
compileSdkVersion 33

defaultConfig {
applicationId "com.skye.skyetracker"
minSdkVersion 15
targetSdkVersion 30
targetSdkVersion 33
}

signingConfigs {
Expand All @@ -27,6 +26,7 @@ android {

}
}
namespace 'com.skye.skyetracker'
}

dependencies {
Expand Down

This file was deleted.

8 changes: 4 additions & 4 deletions code/Android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.skye.skyetracker"
android:versionCode="253"
android:versionName="2.5.3" >
android:versionCode="254"
android:versionName="2.5.4" >

<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
Expand All @@ -17,7 +16,8 @@
android:theme="@android:style/Theme.Holo">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
2 changes: 1 addition & 1 deletion code/Android/app/src/main/assets/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>About SkyeTracker</title>
</head>
<body>
<h2>SkyeTracker (version 2.5.3)</h2>
<h2>SkyeTracker (version 2.5.4)</h2>
<p>
<h5>
<a href="https://www.buymeacoffee.com/r4K2HIB" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
Expand Down
2 changes: 1 addition & 1 deletion code/Android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'com.android.tools.build:gradle:7.4.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 45fa1e8

Please sign in to comment.