Skip to content

Commit

Permalink
Initial commit on v2
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkumar9t2 committed May 31, 2018
1 parent d862a9f commit 6813a85
Show file tree
Hide file tree
Showing 17 changed files with 126 additions and 516 deletions.
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
Expand All @@ -24,8 +23,6 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.novoda:bintray-release:0.7.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package in.arunkumarsampath.suggestions.sample;
package in.arunkumarsampath.suggestions2.sample;

import android.graphics.Color;
import android.os.Bundle;
Expand All @@ -40,7 +40,6 @@
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
import in.arunkumarsampath.suggestions.RxSuggestions;
import rx.android.schedulers.AndroidSchedulers;
import rx.functions.Action1;
import rx.schedulers.Schedulers;
Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="in.arunkumarsampath.suggestions.sample.MainActivity">
tools:context="in.arunkumarsampath.suggestions2.sample.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/res/layout/content_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
android:orientation="vertical"
android:padding="8dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="in.arunkumarsampath.suggestions.sample.MainActivity"
tools:context="in.arunkumarsampath.suggestions2.sample.MainActivity"
tools:showIn="@layout/activity_main">

<android.support.v7.widget.AppCompatButton
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

include ':sample', ':suggestions-core'
include /*':sample', */':suggestions-core'
11 changes: 7 additions & 4 deletions suggestions-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@ apply from: 'gradle-jcenter-push.gradle'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

// Basic support
implementation 'com.android.support:support-core-utils:27.1.1'
// RxJava
implementation "io.reactivex.rxjava2:rxjava:2.1.13"
compile 'io.reactivex.rxjava2:rxandroid:2.0.2'

androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testImplementation 'junit:junit:4.12'

implementation 'com.android.support:support-core-utils:27.1.1'
implementation 'io.reactivex:rxjava:1.3.0'
implementation 'io.reactivex:rxandroid:1.2.1'
}
2 changes: 1 addition & 1 deletion suggestions-core/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.arunkumarsampath.suggestions">
package="in.arunkumarsampath.suggestions2">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion suggestions-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.arunkumarsampath.suggestions">
package="in.arunkumarsampath.suggestions2">

<uses-permission android:name="android.permission.INTERNET" />
<application />
Expand Down
Loading

0 comments on commit 6813a85

Please sign in to comment.