phonegap应用程序在Android 9 Pie上没有网络连接,但在Android 8(Oreo)上工作

时间:2019-05-28 13:06:15

标签: android html phonegap

除了9 Pie,我有一个可以在每个Android版本上运行的手机隔断应用程序。 应用已在Android 8中使用登录凭据登录,但无法在android 9上运行

const NO_WIDTH_SPACE = '​'; // This is a special char you should copy and paste, not an empty string !

const Example = () => {
  const highlight = string =>
    string.split(' ').map((word, i) => (
      <Text key={i}>
        <Text style={styles.highlighted}>{word} </Text>
        {NO_WIDTH_SPACE}
      </Text>
    ));

  return (
    <Text>
      Some regular text {highlight('with some properly highlighted text')}
    </Text>
  );
}

const styles = StyleSheet.create({
  highlighted: {
    backgroundColor: 'yellow',
  },
});

与Android 9配合使用的应用程序需要minSdkVersion为17。我的已经有19个。 TargetSdkVersion是28。

0 个答案:

没有答案