-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from 2BAB/dev
Upgrade Polyfill to 0.7.0 and support AGP 7.2.x
- Loading branch information
Showing
61 changed files
with
450 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
*.iml | ||
.gradle | ||
/sample/local.properties | ||
.idea | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties | ||
.idea/ | ||
.gradle/ | ||
build/ | ||
local/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
task("clean") { | ||
delete(rootProject.buildDir) | ||
allprojects { | ||
group = "me.2bab" | ||
version = BuildConfig.Versions.sealVersion | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
seal/buildSrc/src/main/kotlin/BuildConfig.kt → buildSrc/src/main/kotlin/BuildConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
object BuildConfig { | ||
|
||
object Versions { | ||
const val sealVersion = "3.2.0" | ||
const val sealVersion = "3.3.0" | ||
} | ||
|
||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
plugins { | ||
kotlin("jvm") | ||
kotlin("plugin.serialization") | ||
} | ||
|
||
group = "me.2bab" | ||
|
||
java { | ||
withSourcesJar() | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
|
||
dependencies { | ||
implementation(deps.kotlin.std) | ||
implementation(deps.kotlin.coroutine) | ||
implementation(platform("org.jetbrains.kotlin:kotlin-bom")) | ||
} | ||
|
||
testing { | ||
suites { | ||
val functionalTest by registering(JvmTestSuite::class) { | ||
useJUnitJupiter() | ||
testType.set(TestSuiteType.FUNCTIONAL_TEST) | ||
dependencies { | ||
implementation(deps.hamcrest) | ||
implementation("dev.gradleplugins:gradle-test-kit:7.4.2") | ||
implementation(deps.kotlin.coroutine) | ||
implementation(deps.kotlin.serialization) | ||
implementation(deps.zip4j) | ||
implementation(deps.polyfill.manifest.parser) | ||
} | ||
} | ||
} | ||
} | ||
|
||
tasks.named("check") { | ||
dependsOn(testing.suites.named("functionalTest")) | ||
} | ||
|
||
tasks.withType<Test> { | ||
testLogging { | ||
this.showStandardStreams = true | ||
} | ||
} |
Oops, something went wrong.