Skip to content

Commit

Permalink
Fix build.gradle formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Orzomaxx committed Nov 27, 2023
1 parent 769c092 commit 84bca1c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ android {
compileSdk 33

defaultConfig {
applicationId "tk.zwander.wifilist"
applicationId 'tk.zwander.wifilist'
minSdk 30
targetSdk 33
versionCode 10
versionName "1.2.1"
versionName '1.2.1'

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
vectorDrawables {
useSupportLibrary true
}
Expand Down Expand Up @@ -55,8 +55,8 @@ dependencies {
implementation 'androidx.fragment:fragment-ktx:1.5.7'
implementation 'androidx.datastore:datastore-preferences:1.1.0-alpha04'

implementation "dev.rikka.shizuku:api:13.1.0"
implementation "dev.rikka.shizuku:provider:13.1.0"
implementation 'dev.rikka.shizuku:api:13.1.0'
implementation 'dev.rikka.shizuku:provider:13.1.0'
implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'
implementation 'com.google.android.material:material:1.8.0'
implementation 'com.google.accompanist:accompanist-flowlayout:0.30.0'
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
tasks.register('clean', Delete) {
delete rootProject.buildDir
}

buildscript {
repositories {
google()
Expand All @@ -14,7 +10,11 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:8.2.0-alpha01'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:7.4.0'
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

0 comments on commit 84bca1c

Please sign in to comment.