Skip to content

Commit 94577b1

Browse files
committed
Rename package name.
1 parent b030f04 commit 94577b1

File tree

15 files changed

+36
-25
lines changed

15 files changed

+36
-25
lines changed

.idea/dictionaries/Kilnn.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.3.1'
9-
9+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // Add this line
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

library/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
group='com.github.kilnn'
24

35
android {
46
compileSdkVersion 25

library/src/androidTest/java/com/kilnn/widget/diffuse/ExampleInstrumentedTest.java renamed to library/src/androidTest/java/com/github/kilnn/diffuse/ExampleInstrumentedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kilnn.widget.diffuse;
1+
package com.github.kilnn.diffuse;
22

33
import android.content.Context;
44
import android.support.test.InstrumentationRegistry;

library/src/main/AndroidManifest.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
3-
package="com.kilnn.widget.diffuse"
4-
>
5-
6-
<application android:allowBackup="true"
7-
android:label="@string/app_name"
8-
android:supportsRtl="true"
9-
>
1+
<manifest
2+
xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.github.kilnn.diffuse">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:label="@string/app_name"
8+
android:supportsRtl="true">
109

1110
</application>
1211

library/src/main/java/com/kilnn/widget/diffuse/DiffuseLayout.java renamed to library/src/main/java/com/github/kilnn/diffuse/DiffuseLayout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kilnn.widget.diffuse;
1+
package com.github.kilnn.diffuse;
22

33
import android.annotation.TargetApi;
44
import android.content.Context;

library/src/test/java/com/kilnn/widget/diffuse/ExampleUnitTest.java renamed to library/src/test/java/com/github/kilnn/diffuse/ExampleUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.kilnn.widget.diffuse;
1+
package com.github.kilnn.diffuse;
22

33
import org.junit.Test;
44

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
compileSdkVersion 25
55
buildToolsVersion "25.0.0"
66
defaultConfig {
7-
applicationId "com.kilnn.widget.diffuse.sample"
7+
applicationId "com.github.kilnn.diffuse.sample"
88
minSdkVersion 9
99
targetSdkVersion 25
1010
versionCode 1

0 commit comments

Comments
 (0)