Skip to content

Commit f774c8e

Browse files
author
Johannes Braun
committed
rename modules
1 parent d14b111 commit f774c8e

40 files changed

+13
-12
lines changed

.idea/gradle.xml

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

.idea/modules.xml

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

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sudo: false
55
branches:
66
only: master
77

8-
script: gradle :demo:assembleRelease
8+
script: gradle :androidTutorialBubbles:assembleRelease
99

1010
android:
1111
components:
File renamed without changes.

tutorialbubbles/build.gradle renamed to androidTutorialBubbles/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ repositories {
33
jcenter()
44
}
55

6+
67
apply plugin: 'com.android.library'
78
apply plugin: 'findbugs'
89
apply plugin: 'com.novoda.bintray-release'
@@ -19,7 +20,7 @@ android {
1920
minSdkVersion 14
2021
targetSdkVersion 23
2122
versionCode 1
22-
versionName "1.0"
23+
versionName "1.0.0"
2324
}
2425
buildTypes {
2526
release {
@@ -39,11 +40,11 @@ dependencies {
3940

4041
publish {
4142
userOrg = 'lovoo'
42-
groupId = 'com.lovoo.android'
43+
groupId = 'com.lovoo'
4344
artifactId = 'AndroidTutorialBubbles'
4445
version = '1.0.0'
4546
description = 'A little ui framework that displays a styled tutorial bubble, which positions and scales itself based on a given anchor view.'
4647
website = 'https://github.com/Lovoo/android-tutorial-bubbles'
47-
issueTracker = "https://github.com/Lovoo/android-tutorial-bubbles/issues"
48-
repository = "https://github.com/Lovoo/android-tutorial-bubbles.git"
48+
issueTracker = 'https://github.com/Lovoo/android-tutorial-bubbles/issues'
49+
repository = 'https://github.com/Lovoo/android-tutorial-bubbles.git'
4950
}
File renamed without changes.

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include ':demo'
2-
include ':tutorialbubbles'
1+
include ':tutorialsDemoApp'
2+
include ':androidTutorialBubbles'
File renamed without changes.

demo/build.gradle renamed to tutorialsDemoApp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121

2222
dependencies {
2323
compile fileTree(dir: 'libs', include: ['*.jar'])
24-
compile project(':tutorialbubbles')
24+
compile project(':androidTutorialBubbles')
2525
testCompile 'junit:junit:4.12'
2626
compile 'com.android.support:appcompat-v7:23.1.0'
2727
compile 'com.android.support:design:23.1.0'

0 commit comments

Comments
 (0)