Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit c8401c9

Browse files
committed
Make source code public
1 parent 7dbbae6 commit c8401c9

File tree

83 files changed

+2994
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+2994
-0
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.gradle
2+
/local.properties
3+
.DS_Store
4+
/build
5+
/captures
6+
.externalNativeBuild
7+
.cxx
8+
local.properties
9+
10+
# Intellij
11+
.idea/*
12+
*.iml
13+
!.idea/codeStyles
14+
!.idea/dictionaries
15+
!.idea/inspectionProfiles
16+
!.idea/saveactions_settings.xml

.idea/codeStyles/Project.xml

+131
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/olshevski.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/saveactions_settings.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api-compose/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

api-compose/build.gradle.kts

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
plugins {
2+
id("com.android.library")
3+
kotlin("android")
4+
`maven-publish`
5+
}
6+
7+
android {
8+
compileSdk = AndroidSdkVersion.Compile
9+
10+
defaultConfig {
11+
minSdk = AndroidSdkVersion.Min
12+
targetSdk = AndroidSdkVersion.Target
13+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
14+
consumerProguardFiles("consumer-rules.pro")
15+
}
16+
17+
buildTypes {
18+
named("release") {
19+
isMinifyEnabled = false
20+
setProguardFiles(
21+
listOf(
22+
getDefaultProguardFile("proguard-android-optimize.txt"),
23+
"proguard-rules.pro"
24+
)
25+
)
26+
}
27+
}
28+
29+
buildFeatures {
30+
compose = true
31+
}
32+
33+
composeOptions {
34+
kotlinCompilerExtensionVersion = Deps.Compose.Version
35+
}
36+
37+
publishing {
38+
singleVariant("release") {
39+
withSourcesJar()
40+
withJavadocJar()
41+
}
42+
}
43+
}
44+
45+
dependencies {
46+
api(projects.api)
47+
api(Deps.Navigation.Compose)
48+
}
49+
50+
afterEvaluate {
51+
publishing {
52+
publications {
53+
create<MavenPublication>("apiCompose") {
54+
from(components["release"])
55+
artifactId = "api-compose"
56+
}
57+
}
58+
}
59+
}

api-compose/consumer-rules.pro

Whitespace-only changes.

api-compose/proguard-rules.pro

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="dev.olshevski.safeargs.lib.compose">
4+
5+
</manifest>

0 commit comments

Comments
 (0)