Skip to content

Commit b44e35e

Browse files
authored
Merge pull request #9 from algolia/feature/restructuration
Feature/restructuration
2 parents d0caf23 + 9f19f7f commit b44e35e

File tree

67 files changed

+1033
-1013
lines changed

Some content is hidden

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

67 files changed

+1033
-1013
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ projectFilesBackup
66

77
# Build
88
.gradle
9-
/.idea/workspace.xml
10-
/.idea/libraries
119
/build
1210
/captures
1311
.bintray.json

app/app.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
4+
5+
android {
6+
compileSdkVersion sdkCompile
7+
defaultConfig {
8+
applicationId "com.algolia.instantsearch.voice.demo"
9+
minSdkVersion sdkMin
10+
targetSdkVersion sdkTarget
11+
versionCode versioningCode
12+
versionName versioningName
13+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
14+
}
15+
buildTypes {
16+
release {
17+
minifyEnabled false
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19+
}
20+
}
21+
sourceSets {
22+
main.java.srcDirs += "src/main/kotlin"
23+
}
24+
}
25+
26+
dependencies {
27+
implementation project(":voice")
28+
implementation project(":ui")
29+
30+
implementation dependency_jvm.kotlin_stdlib
31+
32+
implementation dependency_android.appcompat
33+
implementation dependency_android.design
34+
implementation dependency_android.constraint_layout
35+
}

app/build.gradle

Lines changed: 0 additions & 32 deletions
This file was deleted.

app/gradle.properties

Lines changed: 0 additions & 13 deletions
This file was deleted.
-53.4 KB
Binary file not shown.

app/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 6 deletions
This file was deleted.

app/gradlew

Lines changed: 0 additions & 172 deletions
This file was deleted.

app/gradlew.bat

Lines changed: 0 additions & 84 deletions
This file was deleted.

app/settings.gradle

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/src/main/java/com/algolia/instantsearch/voice/demo/MainActivity.kt

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)