Rename some system functions, merge the Launch* ones.

android launchurl buildfix
This commit is contained in:
Henrik Rydgård 2023-03-21 10:42:23 +01:00
parent a9eaa4fdc8
commit d3955b42bb
32 changed files with 178 additions and 207 deletions

View file

@ -97,8 +97,8 @@ jclass findClass(const char *name) {
return nullptr;
}
bool audioRecording_Available() { return false; }
bool audioRecording_State() { return false; }
bool System_AudioRecordingIsAvailable() { return false; }
bool System_AudioRecordingState() { return false; }
#endif
#ifndef M_PI_2
@ -694,7 +694,7 @@ static bool TestAndroidContentURI() {
EXPECT_TRUE(fileTreeURI.CanNavigateUp());
fileTreeURI.NavigateUp();
EXPECT_FALSE(fileTreeURI.CanNavigateUp());
EXPECT_EQ_STR(fileTreeURI.FilePath(), fileTreeURI.RootPath());
EXPECT_EQ_STR(fileTreeURI.ToString(), std::string(directoryURIString));