-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
34 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
apply plugin: 'com.android.application' | ||
apply from: './dependencies.gradle' | ||
|
||
android { | ||
compileSdkVersion 27 | ||
compileSdkVersion rootProject.compileSdkVersion | ||
|
||
dataBinding { | ||
enabled = true | ||
} | ||
|
||
defaultConfig { | ||
minSdkVersion rootProject.mindkVersion | ||
targetSdkVersion rootProject.targetSdkVersion | ||
applicationId "br.com.liveo.searchview_materialdesign" | ||
minSdkVersion 18 | ||
targetSdkVersion 27 | ||
|
||
versionCode 1 | ||
versionName "1.0" | ||
|
||
vectorDrawables.useSupportLibrary = true | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation project(':library') | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
implementation 'com.android.support:appcompat-v7:27.1.0' | ||
implementation 'com.android.support.constraint:constraint-layout:1.0.2' | ||
implementation 'com.android.support:design:27.1.0' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.1' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
dependencies { | ||
implementation project(':library') | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
|
||
implementation "com.google.code.gson:gson:$gsonVersion" | ||
implementation "com.android.support:design:$supportLibraryVersion" | ||
implementation "com.android.support:appcompat-v7:$supportLibraryVersion" | ||
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVersion" | ||
} |
26 changes: 0 additions & 26 deletions
26
.../src/androidTest/java/br/com/liveo/searchview_materialdesign/ExampleInstrumentedTest.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
demo/src/test/java/br/com/liveo/searchview_materialdesign/ExampleUnitTest.java
This file was deleted.
Oops, something went wrong.