Skip to content

Commit

Permalink
[Servant2] prepare for release v9.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauin committed Nov 5, 2016
1 parent 1b36c17 commit 5e77588
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RxJava.
To use Servant in your project, add the library as a dependency in your `build.gradle` file:
```groovy
dependencies {
compile 'com.mtramin:servant:9.8.0.0'
compile 'com.mtramin.servant2:servant:9.8.0.0'
}
```

Expand Down Expand Up @@ -67,7 +67,7 @@ Servant.completable(/* implement GoogleApiClientCompletable */)

Servant brings the following dependencies:

- RxJava (v1.x)
- RxJava (v2.x)
- Google Play Services (base) which provides GoogleApiClient

Due to the Google Play Services dependency also the method count of the library seems quite high.
Expand All @@ -94,4 +94,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationServices;
import com.mtramin.servant.GoogleApiClientCompletable;
import com.mtramin.servant.GoogleApiClientSingle;
import com.mtramin.servant.Servant;
import com.mtramin.servant2.GoogleApiClientCompletable;
import com.mtramin.servant2.GoogleApiClientSingle;
import com.mtramin.servant2.Servant;
import com.mtramin.servant_sampler.R;

import io.reactivex.disposables.Disposable;
Expand Down
2 changes: 1 addition & 1 deletion servant/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
apply plugin: 'com.android.library'
apply plugin: 'me.tatarka.retrolambda'

group 'com.mtramin'
group 'com.mtramin.servant2'
version versions.name

android {
Expand Down
2 changes: 1 addition & 1 deletion servant/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
~ limitations under the License.
-->

<manifest package="com.mtramin.servant" />
<manifest package="com.mtramin.servant2" />
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mtramin.servant;
package com.mtramin.servant2;

import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mtramin.servant;
package com.mtramin.servant2;

import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;
import android.os.Bundle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.mtramin.servant;
package com.mtramin.servant2;

/**
* Exception that is thrown upon errors with the {@link com.google.android.gms.common.api.GoogleApiClient}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mtramin.servant;
package com.mtramin.servant2;

import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

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

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

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

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

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

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

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

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

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

package com.mtramin.servant;
package com.mtramin.servant2;

import android.content.Context;

Expand Down

0 comments on commit 5e77588

Please sign in to comment.