Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump androidx.lifecycle:lifecycle-viewmodel-ktx from 2.5.1 to 2.6.2 in /10-bitClockWidget #129

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions 10-bitClockWidget/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,22 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

apply plugin: 'com.android.application'
plugins {
id 'com.android.application'
}

android {
compileSdkVersion 33
compileSdk 33

defaultConfig {
namespace "com.github.ashutoshgngwr.tenbitclockwidget"
applicationId "com.github.ashutoshgngwr.tenbitclockwidget"
minSdkVersion 14
targetSdkVersion 33
minSdk 14
targetSdk 33
versionCode 214
versionName "2.1-4"
}

buildTypes {
release {
debuggable false
Expand All @@ -46,8 +48,6 @@ android {
}

dependencies {
// https://issuetracker.google.com/issues/238425626
api 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.preference:preference:1.2.1'
implementation('com.github.GrenderG:Color-O-Matic:1.1.5') {
Expand Down
24 changes: 4 additions & 20 deletions 10-bitClockWidget/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,10 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

buildscript {
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
}
}

allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
plugins {
id 'com.android.application' version "8.1.2" apply false
}

task clean(type: Delete) {
delete rootProject.buildDir
tasks.register('clean', Delete) {
delete rootProject.layout.buildDir
}
3 changes: 3 additions & 0 deletions 10-bitClockWidget/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@
org.gradle.jvmargs=-Xmx1536m
android.enableJetifier=true
android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
17 changes: 17 additions & 0 deletions 10-bitClockWidget/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,22 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}

rootProject.name = '10-bit Clock Widget'
include ':app'