-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compile apk #42
Comments
Clone the repo locally, import with Android Studio, and (theoretically) it should build. I haven't tried cloning and building from scratch for a while frankly ... You don't need to recompile for SMS access actually, as long as your phone shows notification for received SMS messages (that including message text and sender number/name), you can use the new Notification Template feature to achieve the same result. |
Thanks for your help, I will give it a try locally. I was hoping to do it with github actions, I will try locally and give github more effort when I can. I have tonnes of SMS templates that need changing that's why, yes I should go through and change them all but that will take time. |
Hi, I have tested this, and it is great with my tests with other notifications, eg WhatsApp and telegram, but I cannot get it to capture incoming SMS. This is an old template that has been working on previous app |
Hi, Wait for next SMS sent by it, don't swipe it away, go to Notification Template list activity and use the right-top list button to copy exactly what the app sees the notification, and build on that. |
Strange ... sender with you can try a last resort that put for the message body part, you don't need to put {{}} at the end (it's using regex search substring so you only need {{}} if you want to skip something in center) |
I don't think the old code path decoding SMS payload will work on new android versions (I never tested that part with my environment). |
you will need to add following sections to AndroidManifest.xml to get SMS permission:
and modify
and delete the following line
to make the switch appear. But I'm curious on the behavior of SMS notification on your device - Does it show notification? Does the notification have the message body? Is it showing but Financisto can't obtain its contents or it's completely not showing? |
Ok, thanks I will give it a try. The sms I tested is sending myself an sms from the same sim. When you do that there is no notification as you get normally in your notification. If I get sms working with your changes then the testing method I'm doing will work as it reads the sms and doesn't look for the notification. |
I don't know if you have added android intents to this app but if I could add transactions with android intents it would be useful. I currently use macrodroid to handle sms for another application. Macrodroid can manipule sms data and send intents. |
Could you give some instructions of how to do the compiling of this apk. I want SMS functionality.
e.g Github actions workflow that will get it built.
I have forked your repo to try this myself, not sure how to get it working. You can see what I have done in my fork.
https://github.com/ahmaddxb/financisto1-holo
The text was updated successfully, but these errors were encountered: