Skip to content

Commit

Permalink
Exclude dependency info when building an apk. Required for F-Droid.
Browse files Browse the repository at this point in the history
  • Loading branch information
amugofjava committed Sep 30, 2024
1 parent 8a3cf84 commit f5ebb17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}

dependenciesInfo {
includeInApk = false
includeInBundle = true
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}
Expand Down
2 changes: 1 addition & 1 deletion lib/core/environment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Environment {
static const _applicationName = 'Anytime';
static const _applicationUrl = 'https://github.com/amugofjava/anytime_podcast_player';
static const _projectVersion = '1.3.9';
static const _build = '154';
static const _build = '155';

static var _agentString = userAgentAppString;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: anytime
description: Anytime Podcast Player

version: 1.3.9+154
version: 1.3.9+155

environment:
sdk: '>=3.2.0 <4.0.0'
Expand Down

0 comments on commit f5ebb17

Please sign in to comment.