diff options
author | cyberta <cyberta@riseup.net> | 2023-10-31 18:40:55 +0000 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2023-10-31 18:40:55 +0000 |
commit | e62532bb0b2f57293edf18ae82afab5f3c8621e7 (patch) | |
tree | b3b8259dd475882d8c87c0aac54488866fc2e76c /app/src/production/java | |
parent | 2274d71a7942d5a89a27918b28041dae5be3816a (diff) | |
parent | bd00c1d8385db2fb6de07fa17349f0bfb260b1a7 (diff) |
Merge branch 'update_dependencies_2' into 'master'
Update dependencies
Closes #9041
See merge request leap/bitmask_android!259
Diffstat (limited to 'app/src/production/java')
3 files changed, 0 insertions, 101 deletions
diff --git a/app/src/production/java/se/leap/bitmaskclient/providersetup/AddProviderActivity.java b/app/src/production/java/se/leap/bitmaskclient/providersetup/AddProviderActivity.java deleted file mode 100644 index 7ca707db..00000000 --- a/app/src/production/java/se/leap/bitmaskclient/providersetup/AddProviderActivity.java +++ /dev/null @@ -1,36 +0,0 @@ -package se.leap.bitmaskclient.providersetup; - -import android.os.Bundle; -import android.view.View; -import android.widget.Button; - -import butterknife.BindView; -import se.leap.bitmaskclient.R; -import se.leap.bitmaskclient.providersetup.activities.AddProviderBaseActivity; - -public class AddProviderActivity extends AddProviderBaseActivity { - - final public static String TAG = "AddProviderActivity"; - - @BindView(R.id.button_save) - Button saveButton; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.a_add_provider); - init(); - - } - - - - @Override - public void setupSaveButton() { - saveButton.setOnClickListener(new View.OnClickListener() { - public void onClick(View v) { - saveProvider(); - } - }); - } -} diff --git a/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderDetailActivity.java b/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderDetailActivity.java deleted file mode 100644 index ec932394..00000000 --- a/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderDetailActivity.java +++ /dev/null @@ -1,6 +0,0 @@ -package se.leap.bitmaskclient.providersetup; - -import se.leap.bitmaskclient.providersetup.activities.AbstractProviderDetailActivity; - -public class ProviderDetailActivity extends AbstractProviderDetailActivity { -} diff --git a/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderListActivity.java b/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderListActivity.java deleted file mode 100644 index 6a1eaf95..00000000 --- a/app/src/production/java/se/leap/bitmaskclient/providersetup/ProviderListActivity.java +++ /dev/null @@ -1,59 +0,0 @@ -/** - * Copyright (c) 2013 LEAP Encryption Access Project and contributers - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ -package se.leap.bitmaskclient.providersetup; - -import androidx.annotation.NonNull; - -import se.leap.bitmaskclient.base.models.Provider; -import se.leap.bitmaskclient.providersetup.ProviderAPICommand; -import se.leap.bitmaskclient.providersetup.activities.ProviderListBaseActivity; - -import static se.leap.bitmaskclient.providersetup.ProviderAPI.SET_UP_PROVIDER; -import static se.leap.bitmaskclient.providersetup.ProviderSetupInterface.ProviderConfigState.SETTING_UP_PROVIDER; - -/** - * Activity that builds and shows the list of known available providers. - * <p/> - * It also allows the user to enter custom providers with a button. - * - * @author parmegv - * @author cyberta - */ -public class ProviderListActivity extends ProviderListBaseActivity { - - - @Override - protected void onItemSelectedLogic() { - setUpProvider(); - } - - /** - * Asks ProviderAPI to download a new provider.json file - * - */ - public void setUpProvider() { - providerConfigState = SETTING_UP_PROVIDER; - ProviderAPICommand.execute(this, SET_UP_PROVIDER, provider); - } - - @Override - public void retrySetUpProvider(@NonNull Provider provider) { - providerConfigState = SETTING_UP_PROVIDER; - ProviderAPICommand.execute(this, SET_UP_PROVIDER, provider); - } - -} |