Sending url to ionic android app via webintents from another app

前端 未结 3 1445
时光说笑
时光说笑 2020-12-15 11:24

Looking for an updated solution, running the latest ionic 1.1.0 release which uses Cordova 5.x. Trying to be able to browse a website in chrome and send that url to my ionic

3条回答
  •  [愿得一人]
    2020-12-15 11:45

    Found out that the problem was due to how I set up my AndroidManifest.xml file.

    I was using an extra activity tag, when I should have been including the intent in the 1 activity.

    For instance I had:

    
        
            
            
        
    
    
        
            
            
            
        
    
    

    When I should have had:

    
         
             
             
         
         
            
            
            
         
    
    

提交回复
热议问题