Skip to content

Commit

Permalink
* modify package
Browse files Browse the repository at this point in the history
  • Loading branch information
zaaach committed Jun 3, 2021
1 parent 85313de commit 93f606a
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation project(path: ':CircularPercentageView')
implementation project(path: ':library')
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.zaaach.circularpercentageview;
package com.github.zaaach.sample;

import android.content.Context;

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.zaaach.circularpercentageview">
package="com.github.zaaach.sample">

<application
android:allowBackup="true"
Expand All @@ -9,7 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.CircularPercentageView">
<activity android:name=".MainActivity">
<activity android:name="com.github.zaaach.sample.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.github.zaaach.circularpercentageview;
package com.github.zaaach.sample;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;

import com.github.zaaach.circularpercentageview.databinding.ActivityMainBinding;
import com.github.zaaach.sample.databinding.ActivityMainBinding;

import java.util.Random;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.zaaach.circularpercentageview;
package com.github.zaaach.sample;

import org.junit.Test;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include ':CircularPercentageView'
include ':library'
include ':app'
rootProject.name = "CircularPercentageView"

0 comments on commit 93f606a

Please sign in to comment.