Project

General

Profile

RepWifi: graphical app for WiFi connection [using external adapter]

Added by Fil Bergamo about 7 years ago

Updated RepWifi apks:

Latest STABLE version: v0.6.2 Get if from F-Droid
Source: https://git.replicant.us/contrib/Fil/RepWifiApp/tag/?h=v0.6.2

Latest TESTING version: v0.9.1-beta Get if from F-Droid
Source: https://git.replicant.us/contrib/Fil/RepWifiApp/tag/?h=v0.9.1-beta
Version 0.9.1-beta may be UNSTABLE! Please use with care, and report any issues on the tracker or on this thread.

Release key

As of 2017-10-26, the official release channel is F-Droid.
APKs downloaded from F-Droid are signed by their release key.

Unstable/developer releases are signed with Fil's GPG key:

2D36 719C A4B8 3C7A DD9D  33AE A02A 2F68 CD07 CEAD

Installation Troubleshooting:

If installing from F-Droid fails, it probably means that RepWifi is installed as a system app (i.e. it came pre-installed with Replicant)
If that's the case, only if simple uninstall failed, do the following to uninstall RepWifi:
(this works for v0.6.2 or lower, read below for version 0.9 or higher)

adb root
adb shell stop
adb shell
su
mount -o remount,rw /system
# command to remove versions < 0.9
rm /system/app/RepWifi/RepWifi.apk
mount -o ro,remount /system
exit
exit
adb shell start

Starting from version 0.9, RepWifi installs itself in a different directory when operating as as system app (/system/priv-app).
So, to completely remove versions 0.9 or higher change the instructions above replacing

# command to be replaced
rm /system/app/RepWifi/RepWifi.apk

with
# command to remove versions >= 0.9
rm -r /system/priv-app/fil.libre.repwifiapp*

After removing RepWifi, it should be possible to install it normally from F-Droid and get further updates.

Happy hacking!

[ORIGINAL POST]:
Hi everyone,

I just released the first alpha version of my graphical application for managing wifi connection on Replicant.
source code is hosted on https://git.replicant.us/contrib/Fil/RepWifiApp/
I'm really a noob when it comes to git, so please feel free to point out anything I'm doing wrong.
It was my first commit to any project, ever, so please be patient and help me correct things!

For now, only Replicant 6.0 is supported.
Code for Replicant 4.2 is in a very primitive pre-testing state. Please be patient on that.
I stopped development for 4.2 after the first few test attempts, and turned to R6.0, because on my R4.2 device the situation was very unstable and testing was too stressful.
Support for R4.2 is coming, I promise, but first I will need to make a clean 4.2 installation on my device, hoping to make testing a little less cumbersome.

OTOH, I'm really satisfied about the stability under R6.0.
Everything works fine, featuring:
-network discovery
-connecting to WPA/WPA2 secured networks
-connecting to unsecured networks
-saving network passwords
-viewing and deleting saved network informations.

I'm thinking of a meaningful way to provide a compiled, ready to install, APK..
In the meanwhile, attached to this post is a "debug" APK, signed with my GPG key.
The fingerprint of my key is

2D36 719C A4B8 3C7A DD9D 33AE A02A 2F68 CD07 CEAD

You can import it using

gpg --recv-keys CD07CEAD

Please, verify the fingerprint before trusting any signature.
Also, note that my key should be signed by Paul Kocialkowski, so use that as an additional check.

Then download BOTH the apk AND the signature, and VERIFY it before installing.
To verify:

gpg --verify RepWifiApp.apk.sig RepWifiApp.apk

DO NOT INSTALL the apk if the verification fails!
To install the app, connect your device and type:

adb install RepWifiApp.apk

Everything should be now set up and working.
Connect the external wifi dongle, and follow the basic buttons the app provides!

Please, please, please, send feedback, of any kind!
I need to know how the app performs in the long run.
There are bugs, for sure, so please if you find any, report on them in this thread.
If you shall find that any useful feature is missing, please request it, and I'll do my best to include it in future releases!

Enjoy (alpha) libre WiFi connectivity and, as always..
Happy Hacking!

Fil

RepWifi_v0.9-beta_unofficial.apk.sig (819 Bytes) RepWifi_v0.9-beta_unofficial.apk.sig GPG signature for RepWifi_v0.9-beta
RepWifi_v0.9-beta_unofficial.apk (709 KB) RepWifi_v0.9-beta_unofficial.apk Unofficial compiled APK for RepWifi_v0.9-beta

Replies (46)

RE: Graphical app for WiFi connection released - Added by Wolfgang Wiedmeyer about 7 years ago

Great job, Fil! Many thanks for working on this! I already played around with it and looked a little bit through your repo. I tested it with my home network and it worked. It does not only work great, it also looks great :)

I will do more testing and take a closer look at the code. For now, I have the following questions/suggestions:

  • By default, root is disabled in Replicant 6.0. It would be good if the app provides a warning if root is disabled and advise users to enable root to make the app work.
  • The icons look great. Have you created all of them? It would be good to clarify the licence of the graphics somewhere.
  • Not sure, but it could be helpful to have a check if the dongle is connected and operable. You could display an error if someone presses the scan button but there is an issue with the dongle.
  • (not important) The app is displayed with the name RepWifi app. Would it be possible to remove the "app" from the name? Apps usually don't have it explicitly in their name.
  • (not important) Would it be possible to rename the main folder from "project" to something more meaningful like "app"?

I think the next step for me would be to get it to build with the Replicant 6.0 source code and have it included by default in Replicant 6.0. Probably the best way for you to have the app distributed separately is to get it included in F-Droid. Last time I checked, they required upstream developers to have a bug tracker available. You could look into this.

RE: Graphical app for WiFi connection released - Added by Wolfgang Wiedmeyer about 7 years ago

As already discussed in the wifi scripts thread, certain apps (including F-Droid) don't work if cellular data is disabled. The reason is that those apps check for a network connection and the Android system has no connection registered as the app or the scripts more or less bypass the Android system and directly configure wpa_supplicant.

It would be good to find a way to "fake" enable wifi so that apps don't complain. This would also avoid confusing behavior, e.g. if in some app a setting like "only use wifi connection" is enabled and the app complains about a missing wifi connection although the wifi dongle is correctly configured.

There is an xposed module that claims to be able to fake wifi connections. I tested it some time ago when I first worked with the scripts. It didn't work at the time. There are also some notes about difficulties getting it working with Android 6. However, the source code might be helpful to find a solution for this issue.

RE: Graphical app for WiFi connection released - Added by Fil Bergamo about 7 years ago

Thanks for the precious suggestions, Wolfgang!

  • By default, root is disabled in Replicant 6.0. It would be good if the app provides a warning if root is disabled and advise users to enable root to make the app work.

Yes, that's easy, I'll introduce that in the next update!

Woops.. sorry :) my mistake, I committed the whole project folder.. removed the bin folder, should be fine now!

I don't actually know.. I guess it's the standard android library.. Gotta check if the project compiles and runs fine without it..

  • The icons look great. Have you created all of them? It would be good to clarify the licence of the graphics somewhere.

Thanks! Honestly, I'm proud of them too :o)
Yes, I "created" them myself.. but it's basically only a modification of replicant's logo.. they are for sure free-licensed.
Where should I put the licensing statement? Is it enough to put it in the README?

  • Not sure, but it could be helpful to have a check if the dongle is connected and operable. You could display an error if someone presses the scan button but there is an issue with the dongle.

Yes, that's a really good point. I did think about that before, and I was planning to introduce the check, but I was in a rush to release, so I will include this feature in the next update.

  • (not important) The app is displayed with the name RepWifi app. Would it be possible to remove the "app" from the name? Apps usually don't have it explicitly in their name.

Going to change that too! ;)

  • (not important) Would it be possible to rename the main folder from "project" to something more meaningful like "app"?

Done!

As already discussed in the wifi scripts thread, certain apps (including F-Droid) don't work if cellular data is disabled. The reason is that those apps check for a network connection and the Android system has no connection registered as the app or the scripts more or less bypass the Android system and directly configure wpa_supplicant.

It would be good to find a way to "fake" enable wifi so that apps don't complain. This would also avoid confusing behavior, e.g. if in some app a setting like "only use wifi connection" is enabled and the app complains about a missing wifi connection although the wifi dongle is correctly configured.

There is an xposed module that claims to be able to fake wifi connections. I tested it some time ago when I first worked with the scripts. It didn't work at the time. There are also some notes about difficulties getting it working with Android 6. However, the source code might be helpful to find a solution for this issue.

I really want to get into that..
I bookmarked the xposed project, and I'm going to have a look at it during the next days..
I'll see what I'm able to put up in that regard!

For now, thank you for tutoring!

RE: Graphical app for WiFi connection released - Added by Wolfgang Wiedmeyer about 7 years ago

Fil Bergamo wrote:

  • The icons look great. Have you created all of them? It would be good to clarify the licence of the graphics somewhere.

Thanks! Honestly, I'm proud of them too :o)
Yes, I "created" them myself.. but it's basically only a modification of replicant's logo.. they are for sure free-licensed.
Where should I put the licensing statement? Is it enough to put it in the README?

I think so. I'm not a licensing expert, though.

Solving the issue with fake enabling wifi would also help the folks using reverse tethering as it's basically the same issue.

RE: Graphical app for WiFi connection released - Added by robin p about 7 years ago

Fil Bergamo wrote:

I just released the first alpha version of my graphical application for managing wifi connection on Replicant.
source code is hosted on https://git.replicant.us/Fil/RepWifiApp
I'm really a noob when it comes to git, so please feel free to point out anything I'm doing wrong.
It was my first commit to any project, ever, so please be patient and help me correct things!

Hi, is this app for general wifi use, or specifically for the Tehnoetic N150? If for the former, what particular use case is there that is not covered by the applications included with Replicant? If the latter, could you make that clear in the title please, at the moment it is not mentioned at all.

Cheers,

Robin

RE: Graphical app for WiFi connection released - Added by robin p about 7 years ago

Wolfgang Wiedmeyer wrote:

As already discussed in the wifi scripts thread, certain apps (including F-Droid) don't work if cellular data is disabled.

This surprises me, I've never had cellular data enabled and f-droid works fine.....

RE: Graphical app for WiFi connection released - Added by Fil Bergamo about 7 years ago

robin p wrote:

Hi, is this app for general wifi use, or specifically for the Tehnoetic N150?

Neither case. It's for ath9k-driven external WiFi adapters. The one you're referring to is just one of them.

If for the former, what particular use case is there that is not covered by the applications included with Replicant?

There isn't any free/libre application (to my knowledge) that lets you manage WiFi connection using an external interface.

If the latter, could you make that clear in the title please, at the moment it is not mentioned at all.

Some fellow Replicant-ers and I, have been working on a hack, during the last few months, that makes it doable to use an external adapter that runs with free software only for connecting to networks, directly interacting with wpa_supplicant. Until now, only command-line scripts were available.
The app I just released makes it possible to accomplish the same goal, but in a graphical, user-friendly way.
You can look around in the forum, to find out the whole history, starting from here

I didn't report the whole history in this post, because I was thinking that most people would understand what I was talking about.
If anyone else finds out that I really need to summarize things in this thread, then I'll do.

Happy hacking.

Fil

RE: Graphical app for WiFi connection released - Added by Fil Bergamo about 7 years ago

robin p wrote:

This surprises me, I've never had cellular data enabled and f-droid works fine.....

What other kind of internet connection are you using, then?
It would be very useful to know, since we're struggling to find a way to solve this issue..

RE: Graphical app for WiFi connection released - Added by robin p about 7 years ago

Fil Bergamo wrote:

robin p wrote:

This surprises me, I've never had cellular data enabled and f-droid works fine.....

What other kind of internet connection are you using, then?
It would be very useful to know, since we're struggling to find a way to solve this issue..

wifi only

RE: Graphical app for WiFi connection released - Added by Fil Bergamo about 7 years ago

robin p wrote:

Fil Bergamo wrote:

robin p wrote:

This surprises me, I've never had cellular data enabled and f-droid works fine.....

What other kind of internet connection are you using, then?
It would be very useful to know, since we're struggling to find a way to solve this issue..

wifi only

Are you using the internal proprietary chip, or an external adapter?
What version of f-droid are you running? (seems like only the latest release has this issue)
What version of Replicant?

Thanks

RE: Graphical app for WiFi connection released - Added by robin p about 7 years ago

Fil Bergamo wrote:

Neither case. It's for ath9k-driven external WiFi adapters. The one you're referring to is just one of them.

OK

If for the former, what particular use case is there that is not covered by the applications included with Replicant?

There isn't any free/libre application (to my knowledge) that lets you manage WiFi connection using an external interface.

right, I see.

If the latter, could you make that clear in the title please, at the moment it is not mentioned at all.

Some fellow Replicant-ers and I, have been working on a hack, during the last few months, that makes it doable to use an external adapter that runs with free software only for connecting to networks, directly interacting with wpa_supplicant. Until now, only command-line scripts were available.
The app I just released makes it possible to accomplish the same goal, but in a graphical, user-friendly way.

perhaps a title (I think you can edit the title of the thread retrospectively) something like:
"Graphical app for external WiFi dongles released"
would be useful? i agree, no need to include the whole history, but at least something to indicate this has a specific use case would be helpful

I didn't report the whole history in this post, because I was thinking that most people would understand what I was talking about.
If anyone else finds out that I really need to summarize things in this thread, then I'll do.

yep, makes sense.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Fil Bergamo about 7 years ago

Update:

I have updated RepWifiApp. The updated package is attached to this post, together with the signature.

Changes made:
  • enabled debug logging
  • fixed a bug that only allowed to save one single network.
  • added warnings if the external adapter is not found, and if root access is disabled or denied by the user.

Before installing the updated APK, please manually uninstall the previous version from the device:

Settings > Apps > RepWifi App > UNINSTALL

Then follow the installation instructions on the very first post in this thread.
CHECK THE SIGNATURE!!! Do not install the APK if signature check fails!

To use the logging feature:
  1. Launch RepWifi app
  2. Click on the menu button
  3. Select Settings > Debug > Log priority
  4. Set priority level to "Log everything"

Then use the application normally. Logs will be written to logcat with the "RepWifi" tag.

To retrieve the logs, on the host computer use:

adb logcat | grep RepWifi

If you encounter troubles using the app, and only if asked, please copy the output in a text file and send it to me, so that I have some material to investigate on and hopefully solve the problems for you!

When you have finished fetching logs, you can disable logging again by setting the Log priority to "Logging disabled".

Please feel free to ask anything, I'll do my best to answer your questions.

Happy Hacking,

Fil

RE: Graphical app for WiFi connection released [using external adapter] - Added by Wolfgang Wiedmeyer about 7 years ago

Hi Fil,

could it be that you forgot to commit a few xml files as part of commit 49f64a40 · Enable logging + bugfix + new features?
The version before this commit builds fine with Replicant 6.0 (only one minor fix necessary).

I get the following errors with the latest version from master:

ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/SettingsActivity.java:21: xml cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/SettingsActivity.java:30: xml cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/NetworkDetailsActivity.java:105: msg_confirm_delete_network cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/NetworkDetailsActivity.java:106: yes cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/NetworkDetailsActivity.java:107: no cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/MainActivity.java:115: menu_config cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/MainActivity.java:370: msg_interface_not_found cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/MainActivity.java:401: msg_root_denied cannot be resolved or is not a field
ERROR: /home/wolfi/replicant/6.0-romsrc-official/packages/apps/RepWifi/app/src/fil/libre/repwifiapp/activities/MainActivity.java:406: msg_root_disabled cannot be resolved or is not a field

I also noticed that sometimes the indentation of the source code is not consistent. This makes it harder to read it.

Thanks!

RE: Graphical app for WiFi connection released - Added by robin p about 7 years ago

Fil Bergamo wrote:

Are you using the internal proprietary chip, or an external adapter?

internal chip, proprietary firmware extracted from cyanogen/lineage images.

What version of f-droid are you running? (seems like only the latest release has this issue)

the latest, 0.102.1

What version of Replicant?

6.0 on an s3. before that i ran 4.2 for 2.5 years on an s2 and s3

maybe it's important, maybe not: i have used tor for some years now on replicant

also, when you think it is ready, would you submit it for inclusion in f-droid?

RE: Graphical app for WiFi connection released [using external adapter] - Added by Wolfgang Wiedmeyer about 7 years ago

There is now a RepWifi repo for Replicant 6.0 and RepWifi is included in Replicant 6.0. I only had to add two small patches adding the Android.mk and fixing a minor build error.

Fil, I suggest that you merge the changes from this repo in your personal repo and I will merge and test updates from you as development goes on.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Wolfgang Wiedmeyer about 7 years ago

We should also start documenting the Wi-Fi dongle usage in the wiki. The wiki page should be listed under the Replicant usage section on the wiki start page with a name like WifiAdapter. Maybe there is a better name, it should only be consistent with the wiki guidelines.

The page should shortly explain why external Wi-Fi dongles are currently the only solution for having Wi-Fi working with Replicant while linking to existing documentation in the wiki (if applicable).

It needs to be explained that only Wi-Fi dongles with the AR9271 chipset are supported and that an OTG-cable is needed. Maybe we could link to some external resources that explain how the chipset can be identified. Otherwise, we should list dongles that are known to work and dongles that should work but aren't tested yet or where it's not certain that the right chipset is used. Some online hardware resources for GNU/Linux users might also be helpful if the integrated chipset is listed and maybe it's enough to just link to these resources.

The app should be explained, although I think the usage is almost completely self-explanatory. A section about known issues will be needed. This section should cover similar issues as the USB networking page. Problems with low battery levels should be explained there.

The scripts should be mentioned, too. A short usage guide at the end of the wiki page and a hint that the app should be preferred is probably enough.

Any suggestions? Anything I forgot?

RE: Graphical app for WiFi connection released [using external adapter] - Added by Fil Bergamo about 7 years ago

Wolfgang Wiedmeyer wrote:

We should also start documenting the Wi-Fi dongle usage in the wiki.

I'm planning to work on that, as soon as I solve the most urgent issues with the app. I promise. I "only" need time.... :)

The app should be explained, although I think the usage is almost completely self-explanatory. A section about known issues will be needed. This section should cover similar issues as the USB networking page. Problems with low battery levels should be explained there.

Same as above ;)

The scripts should be mentioned, too. A short usage guide at the end of the wiki page and a hint that the app should be preferred is probably enough.

Yep!

Any suggestions? Anything I forgot?

You already mentioned more than I was thinking about :)
Currently nothing else comes to my mind..

If anybody wants to start writing the articles, I'll be at complete disposal to provide them with all information I have about the topic.
Otherwise, I'll be working on it as soon as I can, which unfortunately means not very soon.

Happy hacking!

Fil

RE: Graphical app for WiFi connection released [using external adapter] - Added by robin p about 7 years ago

Fil Bergamo wrote:

If anybody wants to start writing the articles, I'll be at complete disposal to provide them with all information I have about the topic.
Otherwise, I'll be working on it as soon as I can, which unfortunately means not very soon.

I would like to start this, but unfortunately I don't have wiki editing rights. Where do I ask for them? The wiki suggests I must ask for them, can anyone help while I try to dig out Paul K's email address?

RE: Graphical app for WiFi connection released [using external adapter] - Added by Wolfgang Wiedmeyer about 7 years ago

robin p wrote:

Fil Bergamo wrote:

If anybody wants to start writing the articles, I'll be at complete disposal to provide them with all information I have about the topic.
Otherwise, I'll be working on it as soon as I can, which unfortunately means not very soon.

I would like to start this, but unfortunately I don't have wiki editing rights. Where do I ask for them? The wiki suggests I must ask for them, can anyone help while I try to dig out Paul K's email address?

Do you have a working adapter and do you have used it successfully with the app and/or the scripts with at least one device running Replicant 6.0? It would be good if you have some experience with this before editing the WiFi adapter page. Otherwise, I can give you access.

I added the WifiAdapter page with some initial notes.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Wolfgang Wiedmeyer almost 7 years ago

The WifiAdapter page is now more or less ready and I linked it on the wiki index. Of course, there is still lots of room for improvement. More adapters can be added to the list and the instructions could use some verification.

RE: Graphical app for WiFi connection released [using external adapter] - Added by robin p almost 7 years ago

Wolfgang Wiedmeyer wrote:

robin p wrote:

Fil Bergamo wrote:

If anybody wants to start writing the articles, I'll be at complete disposal to provide them with all information I have about the topic.
Otherwise, I'll be working on it as soon as I can, which unfortunately means not very soon.

I would like to start this, but unfortunately I don't have wiki editing rights. Where do I ask for them? The wiki suggests I must ask for them, can anyone help while I try to dig out Paul K's email address?

Do you have a working adapter and do you have used it successfully with the app and/or the scripts with at least one device running Replicant 6.0? It would be good if you have some
experience with this before editing the WiFi adapter page. Otherwise, I can give you access.

it's really disappointing the arbitrary reasons that various people involved with this project come up with to discourage others from taking part. this isn't the first time (the other times involved Paul K) that someone has put up a barrier/discouragement/demotivating response for no apparent reason. you even said yourself "if anyone wants to start writing the article..." and then went on suggest I'm not worthy of contributing. how does that work? your wiki guidelines make a specific point about focussing on the nominal subject (the software/hardware) rather than the person talking about it. do you understand how community works, do you care about contributions, or about maintaining your own personal fiefdoms? this (arbitrary exclusion) is the exact topic that free software is supposed to fight against, it is why it exists. somewhere along the way you forgot that.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Fil Bergamo almost 7 years ago

robin p wrote:

Wolfgang Wiedmeyer wrote:

robin p wrote:

Fil Bergamo wrote:

If anybody wants to start writing the articles, I'll be at complete disposal to provide them with all information I have about the topic.
Otherwise, I'll be working on it as soon as I can, which unfortunately means not very soon.

I would like to start this, but unfortunately I don't have wiki editing rights. Where do I ask for them? The wiki suggests I must ask for them, can anyone help while I try to dig out Paul K's email address?

Do you have a working adapter and do you have used it successfully with the app and/or the scripts with at least one device running Replicant 6.0? It would be good if you have some
experience with this before editing the WiFi adapter page. Otherwise, I can give you access.

it's really disappointing the arbitrary reasons that various people involved with this project come up with to discourage others from taking part. this isn't the first time (the other times involved Paul K) that someone has put up a barrier/discouragement/demotivating response for no apparent reason. you even said yourself "if anyone wants to start writing the article..." and then went on suggest I'm not worthy of contributing. how does that work? your wiki guidelines make a specific point about focussing on the nominal subject (the software/hardware) rather than the person talking about it. do you understand how community works, do you care about contributions, or about maintaining your own personal fiefdoms? this (arbitrary exclusion) is the exact topic that free software is supposed to fight against, it is why it exists. somewhere along the way you forgot that.

I'm sorry mate, but it seems to me like you misunderstood Wolfgang's reply.
Nobody here is discouraging people in taking part to the project.
In facts, it is all the opposite.
What Wolfi was pointing out is that you need to have (at least) some basic knowledge about the topic you are writing about, before starting to write a wiki article.
This is essential to keep the wiki clean and correct, and to avoid misleading users that don't know the subject (which is primarily why one would read the wiki).
He was only asking you if you have any experience in using the external dongle with the scripts and/or with RepWifi, and in facts, he even proposed to give you wiki access if you answered positively:

Wolfgang Wiedmeyer wrote:

Otherwise, I can give you access.

Also, asking people to build up a knowledge before putting their hands on the wiki is NOT "arbitrary exclusion", as you put it. It is a factual need, instead.
Do you really think that anybody could write something useful and correct about any subject without knowing the very basics of it? Come on..

Please, re-read this thread, considering what I just wrote, and try to see how folks here are keen to help rather then exclude people.
If you would like to participate, nobody is wanting to push you away.
Just be sure you have all the prerequisites and you do things properly, before editing the wiki. If you do so, then I'm sure your help will be much appreciated.

Happy hacking.

Fil

RE: Graphical app for WiFi connection released [using external adapter] - Added by Gian-Maria Daffré almost 7 years ago

Hello,

Fil Bergamo wrote:

[...]
Please, please, please, send feedback, of any kind!
I need to know how the app performs in the long run.
There are bugs, for sure, so please if you find any, report on them in this thread.
If you shall find that any useful feature is missing, please request it, and I'll do my best to include it in future releases!

I installed replicant 6.0 on a Samsung Galaxy S2. Installation successful without any errors.

A friend of mine gave me the Tehnoetic Model TET-N150, GNU approved, to try out the wifi dongle.
https://tehnoetic.com/tehnoetic-wireless-adapter-gnu-linux-libre-tet-n150

Gave root access to Apps. The replicant version I downloaded already comes with RepWifi.

Error Message I got: "External Wifi adapter not found! Please plug in a supported WIFI adapter and retry.

Pluged in/out the dongle a few times until it did not complain with the above mentioned error message.

Clicked on Scan for Networks. It seems that it was looking for the networks (please wait... appearing).
But was not able to find any networks.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Gian-Maria Daffré almost 7 years ago

Some further information:

Did as mentioned here.
https://redmine.replicant.us/projects/replicant/wiki/WifiAdapter

Works, but gave me a empty list
  1. | SSID
    1.) |

redid bash select_network.sh

Gave me the following error:
select_network.sh: line 36: Failed to start wpa_supplicant: command not found.

RE: Graphical app for WiFi connection released [using external adapter] - Added by Gian-Maria Daffré almost 7 years ago

Sorry for all the noise. It works now.

Problem was the low battery as mentioned in the issues here
https://redmine.replicant.us/projects/replicant/wiki/WifiAdapter

F-Droid not working tough, will have to look into it.

Thanks for the work and efforts put into this project!

Best,
Giammi

(1-25/46)