dependency update, added map zoom

This commit is contained in:
nuclearfog 2022-01-29 12:13:45 +01:00
parent a7cbcf3036
commit 31f33a751a
No known key found for this signature in database
GPG Key ID: AA0271FBE406DB98
2 changed files with 5 additions and 5 deletions

View File

@ -50,9 +50,9 @@ android {
proguardDictionaries {
dictionaryNames = ['dict/class-dictionary', 'dict/package-dictionary', 'dict/obfuscation-dictionary']
minLineLength 4 // minimum package name length
maxLineLength 8 // maximum package name length
linesCountInDictionary 3000 // maximum class count
minLineLength 4
maxLineLength 8
linesCountInDictionary 12000
}
dependencies {
@ -70,7 +70,7 @@ dependencies {
implementation 'com.larswerkman:LicenseView:1.1'
implementation 'com.github.open-android:Picasso-transformations:0.1.0'
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
implementation 'com.github.nuclearfog:ZoomView:1.0.3'
implementation 'com.github.nuclearfog:ZoomView:1.0.4'
implementation 'com.github.nuclearfog:Tagger:2.3'
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.4.1'
implementation 'com.github.kyleduo:SwitchButton:2.0.3-SNAPSHOT'

View File

@ -359,7 +359,7 @@ public class TweetActivity extends AppCompatActivity implements OnClickListener,
// open tweet location coordinates
else if (v.getId() == R.id.tweet_location_coordinate) {
Intent locationIntent = new Intent(Intent.ACTION_VIEW);
locationIntent.setData(Uri.parse("geo:" + clickedTweet.getLocationCoordinates()));
locationIntent.setData(Uri.parse("geo:" + clickedTweet.getLocationCoordinates() + "?z=14"));
try {
startActivity(locationIntent);
} catch (ActivityNotFoundException err) {