Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasyl Melnyk committed Aug 28, 2023
0 parents commit 5e65590
Show file tree
Hide file tree
Showing 112 changed files with 8,266 additions and 0 deletions.
396 changes: 396 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# These are some examples of commonly ignored file patterns.
# You should customize this list as applicable to your project.
# Learn more about .gitignore:
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore

# Node artifact files
node_modules/
dist/

# Compiled Java class files
*.class

# Compiled Python bytecode
*.py[cod]

# Log files
*.log

# Package files
*.jar

# Maven
target/

# JetBrains IDE
.idea/

# Unit test reports
TEST*.xml

# Generated by MacOS
.DS_Store

# Generated by Windows
Thumbs.db

# Applications
*.app
*.exe
*.war

# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv


*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
build
/build
/captures
.externalNativeBuild
.cxx
local.properties
buildSrc/build/classes/kotlin/main/gradle/kotlin/dsl/
buildSrc/build/
presentation/envTest/release/
presentation/prod/release/
presentation/envTest/
plugins/build/
gradle/libs.versions.updates.toml
1 change: 1 addition & 0 deletions ComposeScrollbars/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
54 changes: 54 additions & 0 deletions ComposeScrollbars/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
@file:Suppress("UnstableApiUsage")

@Suppress(
"DSL_SCOPE_VIOLATION",
"MISSING_DEPENDENCY_CLASS",
"UNRESOLVED_REFERENCE_WRONG_RECEIVER",
"FUNCTION_CALL_EXPECTED"
)

plugins {
id("composescrollbars.library")
`maven-publish`
}

group = ProjectConfig.group
version = ProjectConfig.versionName

publishing {
publications {
register<MavenPublication>(ProjectConfig.publication) {
groupId = ProjectConfig.group
artifactId = ProjectConfig.artifact
version = ProjectConfig.versionName

afterEvaluate {
from(components[ProjectConfig.publication])
}
}
}
}

android {
namespace = ProjectConfig.namespace

composeOptions {
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.version.get()
}

publishing {
singleVariant(ProjectConfig.publication) {
withSourcesJar()
withJavadocJar()
}
}
}

dependencies {
implementation(libs.androidx.ktx)

implementation(platform(libs.compose.bom))
implementation(libs.bundles.compose)

debugImplementation(libs.bundles.debug.compose)
}
21 changes: 21 additions & 0 deletions ComposeScrollbars/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
2 changes: 2 additions & 0 deletions ComposeScrollbars/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest />
Loading

0 comments on commit 5e65590

Please sign in to comment.