Hi All,
I am in urgent need of some advice as I have just launched an app into the Google Play Store only to have the app misbehave to users having been launched into the play store. I need to get an update up to address this issue asap... The app has been tested viggorously and now all of a sudden, a crucial element, the picture taking ability, is broken.
The following code appears to not be firing at all despite a picture being taken using EZCamera -
I know the code no longer fires due to the fact I never see the picture saved toast message...
The photo therefore remains in DirRootExternal when it needs to be in DirInternal by getting moved via the code above.
The only thing I've changed is I've adjusted my Manifest file to set the Target SDK to version 8 to solve problems with check box controls appearing transparent and such. Maybe this is what has broken it, yet everything else in the app works fine?
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/>
<supports-screens android:largeScreens="true"
I'm really not sure what I've done wrong as it has been working the whole time during testing and to break especially after being approved by Google and now being on the Play Store is very disheartening.
Does anyone have any suggestions as to why FileSaved = True never fires the If statement when a picture is taken?
Phone is an LG G3 running Lollipop if that helps that I am testing the app on.
I am in urgent need of some advice as I have just launched an app into the Google Play Store only to have the app misbehave to users having been launched into the play store. I need to get an update up to address this issue asap... The app has been tested viggorously and now all of a sudden, a crucial element, the picture taking ability, is broken.
The following code appears to not be firing at all despite a picture being taken using EZCamera -
B4X:
Sub Cam_PictureTaken (FileSaved As Boolean)
If FileSaved = True Then
File.Copy(File.DirRootExternal & "/" & "AuditPhotos",FileName,File.DirInternal,FileName)
File.Delete(File.DirRootExternal & "/" & "AuditPhotos",FileName)
ToastMessageShow("Picture Saved", True)
End If
DoEvents
End Sub
I know the code no longer fires due to the fact I never see the picture saved toast message...
The photo therefore remains in DirRootExternal when it needs to be in DirInternal by getting moved via the code above.
The only thing I've changed is I've adjusted my Manifest file to set the Target SDK to version 8 to solve problems with check box controls appearing transparent and such. Maybe this is what has broken it, yet everything else in the app works fine?
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/>
<supports-screens android:largeScreens="true"
I'm really not sure what I've done wrong as it has been working the whole time during testing and to break especially after being approved by Google and now being on the Play Store is very disheartening.
Does anyone have any suggestions as to why FileSaved = True never fires the If statement when a picture is taken?
Phone is an LG G3 running Lollipop if that helps that I am testing the app on.