Skip to content

Commit 7770843

Browse files
committedMar 6, 2024
upgrade all things
1 parent 4b76cb8 commit 7770843

File tree

7 files changed

+23
-10
lines changed

7 files changed

+23
-10
lines changed
 
Binary file not shown.
108 Bytes
Binary file not shown.

‎.idea/deploymentTargetDropDown.xml

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/modules/app/Coin_Flip.app.iml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Satish Gaurav
3+
Copyright (c) 2024 Satish Gaurav
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 30
7-
buildToolsVersion "30.0.3"
6+
compileSdk 34
7+
buildToolsVersion '34.0.0'
88

99
defaultConfig {
1010
applicationId "com.example.coinflip"
@@ -23,8 +23,8 @@ android {
2323
}
2424
}
2525
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_1_8
27-
targetCompatibility JavaVersion.VERSION_1_8
26+
sourceCompatibility JavaVersion.VERSION_11
27+
targetCompatibility JavaVersion.VERSION_11
2828
}
2929
namespace 'com.example.coinflip'
3030
}

‎build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
buildscript {
33
repositories {
44
google()
5-
jcenter()
5+
mavenCentral()
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:8.2.0'
@@ -15,10 +15,10 @@ buildscript {
1515
allprojects {
1616
repositories {
1717
google()
18-
jcenter()
18+
mavenCentral()
1919
}
2020
}
2121

22-
task clean(type: Delete) {
22+
tasks.register('clean', Delete) {
2323
delete rootProject.buildDir
2424
}

0 commit comments

Comments
 (0)
Please sign in to comment.