Skip to content

Commit 4da6d9e

Browse files
committed
Rename the module and the package
1 parent a98154e commit 4da6d9e

34 files changed

+20
-20
lines changed
-32.5 KB
Binary file not shown.
File renamed without changes.

app/build.gradle renamed to sample-search/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55
buildToolsVersion "23.0.2"
66

77
defaultConfig {
8-
applicationId "com.spotify.sdk.android"
8+
applicationId "kaaes.spotify.webapi.samplesearch"
99
minSdkVersion 15
1010
targetSdkVersion 23
1111
versionCode 1
@@ -28,12 +28,12 @@ repositories {
2828

2929
dependencies {
3030
compile fileTree(include: ['*.jar'], dir: 'libs')
31-
compile 'com.android.support:appcompat-v7:23.1.0'
32-
compile 'com.android.support:recyclerview-v7:23.1.0'
31+
compile 'com.android.support:appcompat-v7:23.1.1'
32+
compile 'com.android.support:recyclerview-v7:23.1.1'
3333
compile 'com.squareup.picasso:picasso:2.5.2'
3434
compile 'com.google.guava:guava:18.0'
3535
compile project(':spotify-api')
36-
compile(name: 'spotify-auth-1.0.0-beta11', ext: 'aar')
36+
compile(name: 'spotify-auth-1.0.0-beta12', ext: 'aar')
3737

3838
testCompile 'junit:junit:4.12'
3939
}
32.5 KB
Binary file not shown.
File renamed without changes.

app/src/main/AndroidManifest.xml renamed to sample-search/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest
3-
package="com.spotify.sdk.android"
3+
package="kaaes.spotify.webapi.samplesearch"
44
xmlns:android="http://schemas.android.com/apk/res/android">
55

66
<uses-permission android:name="android.permission.INTERNET"/>

app/src/main/java/com/spotify/sdk/android/CredentialsHandler.java renamed to sample-search/src/main/java/kaaes/spotify/webapi/samplesearch/CredentialsHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.spotify.sdk.android;
1+
package kaaes.spotify.webapi.samplesearch;
22

33
import android.content.Context;
44
import android.content.SharedPreferences;

app/src/main/java/com/spotify/sdk/android/LoginActivity.java renamed to sample-search/src/main/java/kaaes/spotify/webapi/samplesearch/LoginActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.spotify.sdk.android;
1+
package kaaes.spotify.webapi.samplesearch;
22

33
import android.app.Activity;
44
import android.content.Intent;

app/src/main/java/com/spotify/sdk/android/MainActivity.java renamed to sample-search/src/main/java/kaaes/spotify/webapi/samplesearch/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.spotify.sdk.android;
1+
package kaaes.spotify.webapi.samplesearch;
22

33
import android.content.Context;
44
import android.content.Intent;

0 commit comments

Comments
 (0)