Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b056774 authored by Goooler's avatar Goooler Committed by cketti
Browse files

Cleanup

parent ac8b71df
Loading
Loading
Loading
Loading

.gitmodules

deleted100644 → 0
+0 −0

Empty file deleted.

app/html-cleaner/.gitignore

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
/build
 No newline at end of file
+5 −10
Original line number Diff line number Diff line
@@ -4,10 +4,6 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinCompile

buildscript {
    ext {
        buildConfig = [
                'robolectricSdk': 31
        ]

        // Judging the impact of newer library versions on the app requires being intimately familiar with the code
        // base. Please don't open pull requests upgrading dependencies if you're a new contributor.
        versions = [
@@ -61,13 +57,12 @@ buildscript {
        ]

        javaVersion = JavaVersion.VERSION_1_8
        kotlinJvmVersion = "1.8"
    }

    repositories {
        mavenCentral()
        google()
        maven { url "https://plugins.gradle.org/m2/" }
        gradlePluginPortal()
    }

    dependencies {
@@ -82,7 +77,7 @@ project.ext {
    testCoverage = project.hasProperty('testCoverage')
}

subprojects {
allprojects {
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute module("androidx.core:core") using module("androidx.core:core:${versions.androidxCore}")
@@ -118,8 +113,8 @@ subprojects {
            }

            compileOptions {
                sourceCompatibility JavaVersion.VERSION_1_8
                targetCompatibility JavaVersion.VERSION_1_8
                sourceCompatibility javaVersion
                targetCompatibility javaVersion
            }

            lintOptions {
@@ -153,7 +148,7 @@ subprojects {

    tasks.withType(KotlinCompile) {
        kotlinOptions {
            freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
            jvmTarget = javaVersion
        }
    }

+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ application {
dependencies {
    implementation project(':app:html-cleaner')

    implementation "org.jetbrains.kotlin:kotlin-stdlib"
    implementation "com.github.ajalt.clikt:clikt:3.4.0"
    implementation "com.squareup.okio:okio:${versions.okio}"
}
+1 −1
Original line number Diff line number Diff line
@@ -9,6 +9,6 @@ android.useAndroidX=true
android.enableJetifier=false
android.nonTransitiveRClass=true

org.gradle.jvmargs=-Xmx1400m
org.gradle.jvmargs=-Xmx1400m -Dfile.encoding=UTF-8
org.gradle.parallel=true
org.gradle.caching=true
Loading