http://www.reddit.com/r/fusionIM/comments/1abx1b/build_39_race_conditions_notifications_ui/ Only MMS, Notifications and 160 character limit left now!
Build 36! SMS fully sync now! READ ME!
http://www.mediafire.com/?9fr9lc5po5blc6h Okay, so now SMS messages sync. If you have a bunch of old messages you don’t care about. Uninstall Fusion and reinstall it. You shouldn’t have to worry about reinstalling the GV app. I’ll submit a warning next build if Fusion couldn’t get the necessary push permissions. So, of course if SMS is syncing... Continue Reading →
Google Voice can’t delete individual messages…
Seriously, this is crazy. Apparently Google only knows how to work with “conversations”. There is literally no way to delete an individual message. Now I’m not so sure how to implement this. There are two ways. Delete the entire conversation from Google Voice’s servers and keep every other message on your Fusion database. The problem... Continue Reading →
Build 31! Feedback needed!
http://www.mediafire.com/?d5i7bwx347rckq5 I haven’t uploaded it to the Play Store. I need somebody to run it and let me know if it works (aka doesn’t crash on boot). I moved everything to E164 by using libphonenumber. It’s bloated and slow (200kb) but I’ll trim that down later. The database is upgraded on boot (which is why... Continue Reading →
Permission Breakdown
Permissions Breakdown: android.permission.ACCESS_NETWORK_STATE: Google Voice Connectivity android.permission.INTERNET: Google Voice Connectivity android.permission.GET_ACCOUNTS: Get Google Account Names android.permission.MANAGE_ACCOUNTS: Create Google Account Prompt android.permission.READ_CONTACTS: Build Contacts List android.permission.READ_PROFILE: Get your profile icon android.permission.RECEIVE_BOOT_COMPLETED: Start on Boot android.permission.RECEIVE_SMS: Receive Text Messages android.permission.SEND_SMS: Send Text Messages android.permission.USE_CREDENTIALS: Get Google Voice OAuth2 credentials (never your password) android.permission.VIBRATE: Vibrate on New Message... Continue Reading →
Changelogs
v0.77: Download MMS v0.76: Vibration, Ringtone and Text Entry options v0.74: QuickReply revamped and customizable. Close-able conversations. v0.71: QuickReply for Android 3.0+ v0.70: Multiview support + theme fixes v0.69: Open and share MMS v0.68: Shows MMS, Navigation Modes and Collapsable Contact Banner v0.65: Crash fixes v0.64: Quick Reply system is complete v0.63: Google Voice stability... Continue Reading →
Sent to Google Play
Theoretical link: https://play.google.com/store/apps/details?id=im.fsn.messenger Reddit Link For those who don’t know, it’s been renamed as Fusion Messenger (or just Fusion)
Split Contacts List (Optional)
A couple of people were asking me for something like SlidingMenu, but it think SlidingMenu can get a bit difficult for some people to use. What I’ve done is created something similar to Google Play’s partial fragment screen. I”m not entirely sure how other people are doing it, but I got it to work pretty... Continue Reading →
SQL Update
Just going to post the new changes I did because Sender/Recipient is redundant with IsIncoming. I changed it to use ExternalAddress and indexed it. private static final String DATABASE_CREATE = "CREATE TABLE Messages " + "(" + "MessageID INTEGER PRIMARY KEY AUTOINCREMENT, " + "ProviderID INTEGER NOT NULL, " + "MessageStatusID UNSIGNED INTEGER NOT NULL,... Continue Reading →