Android react-native如何合并Application

时间:2019-01-29 03:59:08

标签: android react-native

module_a是应用程序

await fetch("https://api.imgflip.com/get_memes")
      .then(response => response.json())
      .then(response =>{
        const {memes} = response.data
        this.setState({allMemeImgs: memes})
      })

module_b有时是Applicaiton,有时是Library

class ModuleA extends BaseApplication{
  ...
}

当ModuleB是库时

class ModuleB extends BaseApplication implements ReactApplication{
    ...
}

如何处理申请?请帮助我。

0 个答案:

没有答案