Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sqayner committed Aug 26, 2023
1 parent 1cdae01 commit a7cc93f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
}
6 changes: 2 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ plugins {
}

group = 'com.github.sqayner'
version = '1.1.0'
version = '1.1.1'

android {
namespace 'tr.com.erenkaynar.library.earthquake'
compileSdk 33

defaultConfig {
minSdk 26
versionCode 2
versionName "1.1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -56,7 +54,7 @@ afterEvaluate {
from components.release
groupId = 'com.github.sqayner'
artifactId = 'earthquake-library-java'
version = '1.1.0'
version = '1.1.1'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public ArrayList<Earthquake> parse(String data) {

final String[] linesArr = data.split("\n");
final ArrayList<String> lines = new ArrayList<>(Arrays.asList(linesArr));
lines.remove(lines.size() - 1);
lines.remove(0);

for (String line : lines) {
Expand Down

0 comments on commit a7cc93f

Please sign in to comment.