Skip to content

Commit

Permalink
chore(*): upgrade gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Sep 23, 2023
1 parent 9371359 commit d8b1d8b
Show file tree
Hide file tree
Showing 9 changed files with 210 additions and 149 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ buildscript {
versionCode = 001_006_000
versionName = "1.6.0"

kotlin_version = '1.6.10'
kotlin_version = '1.6.21'
dokka_version = '1.5.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
Expand Down
9 changes: 4 additions & 5 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 31
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "io.github.thibaultbee.srtdroid.examples"
minSdkVersion 21
targetSdkVersion 31
minSdk 19
compileSdk 31
targetSdk 31
versionCode rootProject.versionCode
versionName rootProject.versionName

Expand Down Expand Up @@ -37,6 +35,7 @@ android {
buildFeatures {
viewBinding true
}
namespace 'io.github.thibaultbee.srtdroid.examples'

}

Expand Down
3 changes: 1 addition & 2 deletions examples/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.github.thibaultbee.srtdroid.examples">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Tue Jan 11 16:42:58 CET 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit d8b1d8b

Please sign in to comment.