Skip to content

Commit

Permalink
v1.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
wseemann committed Oct 4, 2022
1 parent ff1ece0 commit 356ced5
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License
```
RoMote: Open source Roku remote.
Copyright 2016 William Seemann
Copyright 2022 William Seemann
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
9 changes: 4 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ android {
keyPassword 'xxxxxxxxXX'
}
}
compileSdkVersion 31
compileSdkVersion 33

defaultConfig {
applicationId "wseemann.media.romote"
minSdkVersion 21
targetSdkVersion 31
versionCode 24
versionName "1.0.24"
targetSdkVersion 33
versionCode 25
versionName "1.0.25"
}
buildTypes {
getByName("release") {
Expand All @@ -44,7 +44,6 @@ dependencies {
implementation 'com.mikepenz:aboutlibraries:10.3.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'org.jdom:jdom2:2.0.6'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.20'
implementation fileTree(dir: 'src/main/libs', include: ['*.aar', '*.jar'], exclude: [])
Expand Down
Binary file removed app/release/RoMote-1.0.24.apk
Binary file not shown.
Binary file added app/release/RoMote-1.0.25.apk
Binary file not shown.
28 changes: 12 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.6.10'
repositories {
mavenCentral()
google()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.3.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
classpath 'com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.4.0'
}
}

plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false

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

allprojects {
repositories {
mavenCentral()
mavenLocal()
google()
mavenCentral()
}
}

Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Dec 04 17:17:08 PST 2020
#Mon Oct 03 23:25:54 PDT 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
8 changes: 8 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}

include ':app'

0 comments on commit 356ced5

Please sign in to comment.