summaryrefslogtreecommitdiffhomepage
path: root/app/src/main/AndroidManifest.xml
AgeCommit message (Collapse)Author
2018-12-18Migrate to AndroidXHarsh Shandilya
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2018-11-11Auto-format the source directoriesSamuel Holland
Blame Jason for writing Java in vim.
2018-07-25Added QR code scanner as tunnel import methodEric Kuck
2018-07-08Build with different name and ID in debug modeEric Kuck
Signed-off-by: Eric Kuck <eric@bluelinelabs.com>
2018-06-04TunnelManager: new intentsJason A. Donenfeld
2018-05-27Support always-on-vpnJason A. Donenfeld
2018-04-30global: Clean up XMLSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-04-30global: Automatic code formattingSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-04-30SettingsActivity: Define preferenceTheme for AppCompatHarsh Shandilya
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-04-30wg: Add and use dummy AppThemeHarsh Shandilya
Preparation for when the app will start carrying colors reflecting the WireGuard brand. Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
2018-04-29Allow exporting to zip fileJason A. Donenfeld
2018-04-26Manifest: disable always-on VPNJason A. Donenfeld
We don't actually comprehend how this works yet, so disable it. But we'll need to add support for this at some point.
2018-04-23Update application state based on wg-quickJason A. Donenfeld
2018-04-17GoBackend: Use the android VpnService to encapsulate the go backendAurélien Chabot
2018-02-03manifest: Add permission to read external storageSamuel Holland
This fixes support for file managers that don't proxy the file access from the file selection dialog through a content provider, and just return a raw file:// URL. In this case, resolver.openInputStream() tries to open the file directly, and fails with "Permission denied". Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-10Manifest: show back arrow on sub activitiesJason A. Donenfeld
2018-01-08project: Global cleanupSamuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-06Serviceless rewrite, part 1Samuel Holland
Signed-off-by: Samuel Holland <samuel@sholland.org>
2017-12-15tools: build required tools with apkJason A. Donenfeld
2017-11-28Show ConfigActivity when holding QS tileSamuel Holland
2017-11-27NotSupported: check if the module existsJason A. Donenfeld
2017-11-27QuickTileService: show app if no profiles existJason A. Donenfeld
2017-11-24VpnService: Move it to a backends packageSamuel Holland
It should be split into two pieces: configuration file management (loading/saving/renaming/deleting) and calling into wg-quick via RootShell. The configuration file management part should then go back into the main package. This is in preparation for adding additional backends based on wg(8) and wireguard-go.
2017-08-23manifest: ConfigActivity is parent to AddActivitySamuel Holland
2017-08-22Finish first pass of config editor fieldsSamuel Holland
2017-08-22ConfigAddActivity: Rename to AddActivitySamuel Holland
Not everything needs to start with Config
2017-08-17QuickTileService: Implement and update from VpnServiceSamuel Holland
2017-08-15ConfigAddActivity: Add an standalone config-creating activitySamuel Holland
2017-08-13Major renaming and refactoring in activity and serviceSamuel Holland
Apparently "configuration" is the proper term, not "profile".
2017-08-09Settings: Add empty activitySamuel Holland
2017-08-09ProfileEdit: Add empty activity/fragmentSamuel Holland
2017-08-09ProfileActivity: Replace fragments instead of hidingSamuel Holland
2017-08-09ProfileActivity: Extract base class for fixing fragmentsSamuel Holland
2017-08-04ProfileList: Convert to a fragmentSamuel Holland
This is required for a future two-fragment tablet layout, and simplifies the code a bit since the profile detail (view/edit) will be implemented as fragments anyway.
2017-07-30ProfileService: Add a listener to start it on bootSamuel Holland
This will allow automatically starting profiles on boot.
2017-07-30ProfileService: Create it and move profile loadingSamuel Holland
The long-running service is needed for keeping track of which profiles are enabled, for showing notifications, and for the tile service to use. Since it has to know which profiles exist anyway, moving the main ObservableList there avoids some code duplication. It ensures the list is only loaded once, so it cannot get out of sync. It also makes the ProfileList activity load faster, because it doesn't have to wait for file I/O; and it provides a canonical place for storing the Profile objects so they are accessible everywhere, instead of having to look them up by name. This does present some challenges with leaking activities, because all listeners must be removed from the profiles list (and its contents) when an activity is stopped.
2017-07-29ProfileList: Add minimal activitySamuel Holland
For now, it simply reads the files in the app's data directory with file names ending in ".conf" and displays them in a list. This includes the generic list data binding setup for future use.
2017-07-30icon: Use the uncropped logo for the non-round iconSamuel Holland
The round icon remains the same.
2017-07-28project: Create empty project with WireGuard iconSamuel Holland