Skip to content

Commit f94c00d

Browse files
committed
Migrated to MavenCentral
1 parent 353173c commit f94c00d

23 files changed

+279
-381
lines changed

.idea/codeStyles/Project.xml

-138
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

-5
This file was deleted.

.idea/copyright/Apache.xml

-6
This file was deleted.

.idea/copyright/profiles_settings.xml

-7
This file was deleted.

.idea/gradle.xml

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

.idea/jarRepositories.xml

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

.idea/misc.xml

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

.idea/runConfigurations.xml

-12
This file was deleted.

.idea/scopes/Apache.xml

-3
This file was deleted.

.idea/vcs.xml

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

app/build.gradle

-68
This file was deleted.

app/build.gradle.kts

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/*
2+
* tom5079/FloatingSearchView was ported from arimorty/FloatingSearchView
3+
*
4+
* Copyright 2015 Ari C.
5+
* Copyright 2020 tom5079
6+
*
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
*/
19+
20+
plugins {
21+
id("com.android.application")
22+
id("kotlin-android")
23+
id("kotlin-parcelize")
24+
}
25+
26+
android {
27+
compileSdkVersion(30)
28+
29+
defaultConfig {
30+
applicationId = "xyz.quaver.floatingsearchview.sample"
31+
minSdkVersion(14)
32+
targetSdkVersion(30)
33+
versionCode = 1
34+
versionName = "0.1-SAMPLE"
35+
36+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
37+
}
38+
39+
buildTypes {
40+
getByName("release") {
41+
isMinifyEnabled = false
42+
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
43+
}
44+
}
45+
compileOptions {
46+
sourceCompatibility = JavaVersion.VERSION_1_8
47+
targetCompatibility = JavaVersion.VERSION_1_8
48+
}
49+
kotlinOptions {
50+
jvmTarget = "1.8"
51+
}
52+
}
53+
54+
dependencies {
55+
implementation(project(":library"))
56+
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
57+
implementation("androidx.core:core-ktx:1.3.2")
58+
implementation("androidx.appcompat:appcompat:1.2.0")
59+
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
60+
implementation("androidx.navigation:navigation-fragment-ktx:2.3.3")
61+
implementation("androidx.navigation:navigation-ui-ktx:2.3.3")
62+
implementation("com.google.android.material:material:1.3.0")
63+
implementation("com.google.code.gson:gson:2.8.6")
64+
testImplementation("junit:junit:4.13.1")
65+
androidTestImplementation("androidx.test.ext:junit:1.1.2")
66+
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")
67+
68+
}

app/proguard-rules.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Add project specific ProGuard rules here.
22
# You can control the set of applied configuration files using the
3-
# proguardFiles setting in build.gradle.
3+
# proguardFiles setting in build.gradle.kts.kts.
44
#
55
# For more details, see
66
# http://developer.android.com/guide/developing/tools/proguard.html

0 commit comments

Comments
 (0)