Skip to content

Commit

Permalink
co.mobiwise.library name is changed to co.mobiwise.playerview
Browse files Browse the repository at this point in the history
  • Loading branch information
iammert committed Nov 15, 2015
1 parent c2a982e commit bb28155
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 104 deletions.
4 changes: 2 additions & 2 deletions app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@
</content>
<orderEntry type="jdk" jdkName="Android API 23 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="appcompat-v7-23.0.1" level="project" />
<orderEntry type="library" exported="" name="picasso-2.5.2" level="project" />
<orderEntry type="library" exported="" name="support-v4-23.0.1" level="project" />
<orderEntry type="library" exported="" name="appcompat-v7-23.0.1" level="project" />
<orderEntry type="library" exported="" name="support-annotations-23.0.1" level="project" />
<orderEntry type="module" module-name="library" exported="" />
<orderEntry type="module" module-name="playerview" exported="" />
</component>
</module>
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'checkstyle'

dependencies {
compile project(':library')
compile project(':playerview')
compile "com.android.support:appcompat-v7:23.0.1"
}

Expand Down
2 changes: 1 addition & 1 deletion app/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
android:layout_below="@+id/textViewSong"/>


<co.mobiwise.library.MusicPlayerView
<co.mobiwise.playerview.MusicPlayerView
android:id="@+id/mpv"
android:layout_width="250dp"
android:layout_height="250dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;

import co.mobiwise.library.MusicPlayerView;
import co.mobiwise.playerview.MusicPlayerView;

public class MainActivity extends Activity {

Expand Down
1 change: 0 additions & 1 deletion library/AndroidManifest.xml

This file was deleted.

92 changes: 0 additions & 92 deletions library/library.iml

This file was deleted.

1 change: 1 addition & 0 deletions playerview/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<manifest package="co.mobiwise.playerview"/>
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package co.mobiwise.library;
package co.mobiwise.playerview;

import android.animation.Animator;
import android.animation.AnimatorSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package co.mobiwise.library;
package co.mobiwise.playerview;

public interface OnPlayPauseToggleListener {
void onToggled();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package co.mobiwise.library;
package co.mobiwise.playerview;

import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':library'
include ':app', ':playerview'

0 comments on commit bb28155

Please sign in to comment.