Skip to content

Commit

Permalink
Bump dependencies and target SDK 33
Browse files Browse the repository at this point in the history
  • Loading branch information
p1gp1g committed Dec 26, 2023
1 parent 3ffe096 commit 5eefc28
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.31"
ext.kotlin_version = "1.7.10"
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath "com.android.tools.build:gradle:7.3.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Mon Sep 19 19:39:43 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
12 changes: 9 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ plugins {


android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
compileSdk 33
buildToolsVersion '33.0.0'

defaultConfig {
minSdkVersion 16
targetSdkVersion 30
targetSdk 33
versionCode 1
versionName "1.0.0-beta3"

Expand All @@ -27,6 +27,12 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

buildFeatures {
buildConfig = false
}

namespace "org.unifiedpush.android.foss_embedded_fcm_distributor"
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.unifiedpush.android.foss_embedded_fcm_distributor">

<queries>
<intent>
Expand All @@ -21,4 +20,4 @@
</intent-filter>
</receiver>
</application>
</manifest>
</manifest>

0 comments on commit 5eefc28

Please sign in to comment.