Skip to content

Commit

Permalink
jitpack -> maven
Browse files Browse the repository at this point in the history
  • Loading branch information
fandreuz committed Feb 15, 2019
1 parent e2962c0 commit c0908c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
targetSdkVersion 27
flavorDimensions "default"

versionName "v6.13"
versionCode 202
versionName "v6.13.1"
versionCode 203
}
buildTypes {
release {
Expand Down Expand Up @@ -60,5 +60,5 @@ dependencies {
implementation 'net.sourceforge.htmlcleaner:htmlcleaner:2.6'
implementation 'com.jayway.jsonpath:json-path:2.4.0'
implementation 'org.jsoup:jsoup:1.11.3'
implementation 'com.github.fAndreuzzi:CompareString2:v1.0.9'
implementation 'it.andreuzzi:CompareString2:1.0.6'
}
Original file line number Diff line number Diff line change
Expand Up @@ -1156,8 +1156,8 @@ private boolean suggestAppInsideGroup(MainPack pack, List<Suggestion> suggestion
List<AppsManager.Group.GroupLaunchInfo> apps = (List<AppsManager.Group.GroupLaunchInfo>) g.members();
if(apps != null && apps.size() > 0) {
if (app == null || app.length() == 0) {
for (Object o : apps) {
suggestions.add(new Suggestion(beforeLastSpace , o.toString(), clickToLaunch, Suggestion.TYPE_APP, o));
for (AppsManager.Group.GroupLaunchInfo o : apps) {
suggestions.add(new Suggestion(beforeLastSpace , o.publicLabel, clickToLaunch, Suggestion.TYPE_APP, o));
}
}
else {
Expand Down
6 changes: 0 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ buildscript {
jcenter()
mavenCentral()
google()
maven {
url "https://jitpack.io"
}
}

dependencies {
Expand All @@ -21,9 +18,6 @@ task clean(type: Delete) {
allprojects {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
google()
mavenCentral()
}
Expand Down

0 comments on commit c0908c8

Please sign in to comment.