Skip to content

Commit

Permalink
Remove useless codes & refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Aug 27, 2019
1 parent d0a94f2 commit ad86b3b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 52 deletions.
21 changes: 0 additions & 21 deletions app/proguard-rules.pro

This file was deleted.

4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".CustomActivity" />
<activity android:name=".MainActivity" />
<activity
android:name=".MainActivity"
android:name=".CustomActivity"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class CustomListBalloonFactory : Balloon.Factory() {
.setArrowPosition(0.85f)
.setWidth(170)
.setHeight(200)
.setTextSize(12f)
.setCornerRadius(4f)
.setBackgroundColor(ContextCompat.getColor(context, R.color.background800))
.setBalloonAnimation(BalloonAnimation.FADE)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
<color name="white_87">#ddffffff</color>
<color name="white_93">#edf8f8f8</color>
<color name="skyBlue">#57A8D8</color>
<color name="yellow">#FDD835</color>
<color name="yellow">#FBC02D</color>
</resources>
21 changes: 0 additions & 21 deletions balloon/proguard-rules.pro

This file was deleted.

3 changes: 0 additions & 3 deletions balloon/src/main/res/values/strings.xml

This file was deleted.

6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ ext.versions = [
versionName : '1.0.4',

gradleBuildTool : '3.4.2',
spotlessGradle : '3.23.1',
spotlessGradle : '3.24.2',
dokkaGradle : '0.9.17',
bintrayRelease : '0.9.1',

kotlin : '1.3.41',
androidxAppcompat : '1.1.0-rc01',
googleMaterial : '1.1.0-alpha09',
recyclerView : '1.0.0',

// for demo
googleMaterial : '1.1.0-alpha09',
recyclerView : '1.0.0',
baseAdapter : '0.1.3',
circleimageview : '3.0.0'
]
2 changes: 1 addition & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish {
groupId = 'com.github.skydoves'
artifactId = 'balloon'
publishVersion = versions.versionName
desc = 'This is Balloon by skydoves'
desc = 'A lightweight popup like tooltips, fully customizable with arrow and animations.'
website = 'https://github.com/skydoves/Balloon'
issueTracker = "${website}/issues"
repository = "${website}.git"
Expand Down

0 comments on commit ad86b3b

Please sign in to comment.