Skip to content

Commit

Permalink
SDK34 tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
evilbunny2008 committed Nov 29, 2023
1 parent 213ea22 commit 52fae88
Show file tree
Hide file tree
Showing 10 changed files with 164 additions and 246 deletions.
17 changes: 9 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 34
compileSdk 34

defaultConfig {
applicationId "com.odiousapps.weewxweather"
minSdkVersion 23
targetSdkVersion 34
versionCode 1000015
versionName "1.0.15"
versionCode 1000016
versionName "1.0.16"
}

buildTypes {
Expand All @@ -18,15 +19,15 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.compilerArgs += ['-Xlint:deprecation']
}

namespace 'com.odiousapps.weewxweather'
namespace 'com.odiousapps.weewxweather'
}

dependencies {
Expand All @@ -36,7 +37,7 @@ dependencies {
implementation 'androidx.core:core:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'com.github.smart-fun:XmlToJson:1.5.2'
implementation 'com.github.smart-fun:XmlToJson:1.5.3'
implementation 'org.jsoup:jsoup:1.15.3'
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11'
implementation 'com.github.evilbunny2008:android-material-color-picker-dialog:1.3.7'
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />

<application
android:icon="@mipmap/ic_launcher"
Expand Down
Loading

0 comments on commit 52fae88

Please sign in to comment.