我需要使用我的React本机应用打开Google日历。我可以使用链接在浏览器中打开网站。但我找不到打开Google日历的方法。
这是我尝试过的。我需要修改AndroidManifest.xml吗?
<TouchableOpacity
style={[mainStyle.dashboardGridItem, mainStyle.gridTwo]}
onPress={() => Linking.openURL('calendar://app')}
>
<FastImage
resizeMode={FastImage.resizeMode.contain}
style={mainStyle.dashboardGridIcon}
source={calendarIcon}
/>
</TouchableOpacity>