You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
464 B
24 lines
464 B
import React from 'react' |
|
import { AppRegistry, Platform, SafeAreaView, Text } from 'react-native' |
|
|
|
function App(): JSX.Element { |
|
return ( |
|
<SafeAreaView> |
|
<Text>test</Text> |
|
</SafeAreaView> |
|
) |
|
} |
|
|
|
export default App |
|
|
|
if (Platform.OS === 'android') { |
|
AppRegistry.registerHeadlessTask( |
|
'RNCallKeepBackgroundMessage', |
|
() => |
|
({ name, callUUID, handle }) => { |
|
// Make your call here |
|
console.log('something') |
|
return Promise.resolve() |
|
}, |
|
) |
|
}
|
|
|