Skip to content

Commit a4a1220

Browse files
committed
Change version sdk
1 parent 88e6239 commit a4a1220

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ plugins {
66

77
android {
88
namespace 'com.jvrni.filteroption'
9-
compileSdk 33
9+
compileSdk 32
1010

1111
defaultConfig {
1212
applicationId "com.jvrni.filteroption"
1313
minSdk 24
14-
targetSdk 33
14+
targetSdk 32
1515
versionCode 1
1616
versionName "1.0"
1717

@@ -45,7 +45,6 @@ android {
4545
}
4646

4747
dependencies {
48-
implementation(project(':filteroption'))
4948

5049
implementation 'androidx.core:core-ktx:1.9.0'
5150
implementation 'androidx.appcompat:appcompat:1.6.0'
@@ -59,6 +58,7 @@ dependencies {
5958
implementation 'androidx.compose.animation:animation:1.3.3'
6059
implementation 'androidx.compose.ui:ui:1.3.3'
6160
implementation 'androidx.compose.ui:ui-tooling-preview:1.3.3'
61+
implementation 'com.github.Jvrni:FilterOption:0.0.1'
6262

6363
testImplementation 'junit:junit:4.13.2'
6464
androidTestImplementation 'androidx.test.ext:junit:1.1.5'

filteroption/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ plugins {
77

88
android {
99
namespace 'com.jvrni.filteroption'
10-
compileSdk 33
10+
compileSdk 32
1111

1212
defaultConfig {
1313
minSdk 24
14-
targetSdk 33
14+
targetSdk 32
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
consumerProguardFiles "consumer-rules.pro"
@@ -69,7 +69,7 @@ afterEvaluate {
6969

7070
groupId = 'com.github.jvrni'
7171
artifactId = 'filter-option'
72-
version = '0.0.1'
72+
version = '0.0.2'
7373
}
7474
}
7575
}

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ pluginManagement {
33
gradlePluginPortal()
44
google()
55
mavenCentral()
6+
maven { url 'https://jitpack.io' }
67
}
78
}
89
dependencyResolutionManagement {
910
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
1011
repositories {
1112
google()
1213
mavenCentral()
14+
maven { url 'https://jitpack.io' }
1315
}
1416
}
1517
rootProject.name = "FilterOption"

0 commit comments

Comments
 (0)