Skip to content

Commit 356ced5

Browse files
committed
v1.0.25
1 parent ff1ece0 commit 356ced5

File tree

7 files changed

+28
-25
lines changed

7 files changed

+28
-25
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ License
1212
```
1313
RoMote: Open source Roku remote.
1414
15-
Copyright 2016 William Seemann
15+
Copyright 2022 William Seemann
1616
1717
Licensed under the Apache License, Version 2.0 (the "License");
1818
you may not use this file except in compliance with the License.

app/build.gradle

+4-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ android {
1111
keyPassword 'xxxxxxxxXX'
1212
}
1313
}
14-
compileSdkVersion 31
14+
compileSdkVersion 33
1515

1616
defaultConfig {
1717
applicationId "wseemann.media.romote"
1818
minSdkVersion 21
19-
targetSdkVersion 31
20-
versionCode 24
21-
versionName "1.0.24"
19+
targetSdkVersion 33
20+
versionCode 25
21+
versionName "1.0.25"
2222
}
2323
buildTypes {
2424
getByName("release") {
@@ -44,7 +44,6 @@ dependencies {
4444
implementation 'com.mikepenz:aboutlibraries:10.3.1'
4545
implementation 'com.squareup.picasso:picasso:2.5.2'
4646
implementation 'org.jdom:jdom2:2.0.6'
47-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
4847
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
4948
implementation 'io.reactivex.rxjava2:rxjava:2.2.20'
5049
implementation fileTree(dir: 'src/main/libs', include: ['*.aar', '*.jar'], exclude: [])

app/release/RoMote-1.0.24.apk

-5.88 MB
Binary file not shown.

app/release/RoMote-1.0.25.apk

6.14 MB
Binary file not shown.

build.gradle

+12-16
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.6.10'
5-
repositories {
6-
mavenCentral()
7-
google()
8-
maven {
9-
url "https://plugins.gradle.org/m2/"
10-
}
11-
}
124
dependencies {
13-
classpath 'com.android.tools.build:gradle:4.1.3'
14-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
15-
classpath 'com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.3.1'
16-
17-
// NOTE: Do not place your application dependencies here; they belong
18-
// in the individual module build.gradle files
5+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
6+
classpath 'com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.4.0'
197
}
208
}
219

10+
plugins {
11+
id 'com.android.application' version '7.3.0' apply false
12+
id 'com.android.library' version '7.3.0' apply false
13+
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
14+
15+
// NOTE: Do not place your application dependencies here; they belong
16+
// in the individual module build.gradle files
17+
}
18+
2219
allprojects {
2320
repositories {
24-
mavenCentral()
25-
mavenLocal()
2621
google()
22+
mavenCentral()
2723
}
2824
}
2925

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Dec 04 17:17:08 PST 2020
1+
#Mon Oct 03 23:25:54 PDT 2022
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
6+
zipStoreBase=GRADLE_USER_HOME

settings.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
google()
5+
mavenCentral()
6+
}
7+
}
8+
19
include ':app'

0 commit comments

Comments
 (0)