Skip to content

Commit fbdc955

Browse files
authored
Prepare for release 1.5.2 (#32)
1 parent 2900cb0 commit fbdc955

File tree

5 files changed

+33
-27
lines changed

5 files changed

+33
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.2
2+
3+
* Updated the compile SDK and Gradle versions.
4+
15
## 1.5.1
26

37
* Upgraded Kotlin and compile options versions.

android/build.gradle

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,55 @@
1-
group 'com.sharmadhiraj.installed_apps'
2-
version '1.0-SNAPSHOT'
1+
group = "com.sharmadhiraj.installed_apps"
2+
version = "1.0-SNAPSHOT"
33

44
buildscript {
5-
ext.kotlin_version = '1.8.20'
5+
ext.kotlin_version = "1.8.22"
66
repositories {
77
google()
88
mavenCentral()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.2.2'
13-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12+
classpath("com.android.tools.build:gradle:8.1.4")
13+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
1414
}
1515
}
1616

17-
rootProject.allprojects {
17+
allprojects {
1818
repositories {
1919
google()
2020
mavenCentral()
2121
}
2222
}
2323

24-
apply plugin: 'com.android.library'
25-
apply plugin: 'kotlin-android'
24+
apply plugin: "com.android.library"
25+
apply plugin: "kotlin-android"
2626

2727
android {
2828
if (project.android.hasProperty("namespace")) {
29-
namespace 'com.sharmadhiraj.installed_apps'
29+
namespace = "com.sharmadhiraj.installed_apps"
3030
}
3131

32-
compileSdkVersion 30
32+
compileSdk = 34
33+
34+
compileOptions {
35+
sourceCompatibility = JavaVersion.VERSION_1_8
36+
targetCompatibility = JavaVersion.VERSION_1_8
37+
}
38+
39+
kotlinOptions {
40+
jvmTarget = JavaVersion.VERSION_1_8
41+
}
3342

3443
sourceSets {
35-
main.java.srcDirs += 'src/main/kotlin'
44+
main.java.srcDirs += "src/main/kotlin"
45+
test.java.srcDirs += "src/test/kotlin"
3646
}
47+
3748
defaultConfig {
38-
minSdkVersion 16
49+
minSdk = 16
3950
}
40-
lintOptions {
41-
disable 'InvalidPackage'
42-
}
43-
compileOptions {
44-
sourceCompatibility "17"
45-
targetCompatibility JavaVersion.VERSION_17
51+
52+
dependencies {
4653
}
47-
namespace 'com.sharmadhiraj.installed_apps'
48-
}
4954

50-
dependencies {
51-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5255
}

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Mon May 11 15:04:11 NPT 2020
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

android/settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
package android
2-
31
rootProject.name = 'installed_apps'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: installed_apps
22
description: Flutter plugin with utility methods related to installed apps on device.
3-
version: 1.5.1
3+
version: 1.5.2
44
homepage: https://github.com/sharmadhiraj/installed_apps
55

66
environment:

0 commit comments

Comments
 (0)