1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- apply plugin: "com.android.library"
- apply plugin: "kotlin-android"
- apply plugin: "kotlin-kapt"
- apply plugin: 'org.jetbrains.dokka'
- apply plugin: "com.github.dcendents.android-maven"
- group = "com.github.liangjingkanji"
- android {
- compileSdkVersion 30
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- kotlinOptions {
- freeCompilerArgs = ["-Xinline-classes", "-Xallow-result-return-type"]
- }
- dokkaHtml {
- outputDirectory.set(file("$rootDir/docs/api"))
- suppressInheritedMembers.set(true)
- moduleName.set("Net")
- }
- }
- dependencies
- api
- implementation
- implementation
- testImplementation
- androidTestImplementation
- androidTestImplementation
- compileOnly
- compileOnly
- compileOnly
- compileOnly
- }
|