Compare commits

...

4 Commits

Author SHA1 Message Date
Balazs Toldi
b984e35284
Change image for update-fdroid-data task in nightly.yaml 2023-08-14 09:21:05 +02:00
Balazs Toldi
f2a2a3029d
Minor change in nightly pipeline 2023-08-14 09:12:06 +02:00
Balazs Toldi
b4ab1ba414
Update nightly build with signing keys 2023-08-14 08:47:20 +02:00
Balazs Toldi
d244e0ed42
Link resolver to change API base url.
This fixes the issue when opening a link while the app is fully closed
2023-08-14 08:09:51 +02:00
2 changed files with 6 additions and 1 deletions

View File

@ -36,10 +36,13 @@ steps:
- git status
update-fdroid-data:
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
image: cs8898/android-fdroid-sdk:33.0.0
commands:
- pwd
- cd ../repoconfig/fdroid-repo-config/
- echo -n "$${fdroid_ks}" | base64 -d > keystore.p12
- sed -i "s#KS_PASS#$${fdroid_ks_pass}#g" config.yml
- sed -i "s#KEY_PASS#$${fdroid_key_pass}#g" config.yml
- fdroid update
- fdroid deploy
- ls -laR repo

View File

@ -91,6 +91,8 @@ public class LinkResolverActivity extends AppCompatActivity {
((Infinity) getApplication()).getAppComponent().inject(this);
mAccessToken = mCurrentAccountSharedPreferences.getString(SharedPreferencesUtils.ACCESS_TOKEN, null);
String instance = mCurrentAccountSharedPreferences.getString(SharedPreferencesUtils.ACCOUNT_INSTANCE, null);
mRetrofit.setBaseURL(instance);
Uri uri = getIntent().getData();
if (uri == null) {