Couldn't find meta-data for provider with authority

后端 未结 10 1231
粉色の甜心
粉色の甜心 2020-12-05 10:12

I have integrated Snapchat\'s Creative Kit in my Android app. After processing, I receive an image from the server in the form of Byte Array which I am saving to the disk an

10条回答
  •  情深已故
    2020-12-05 10:48

    The problem here is, you use the class name .provider for authorities in manifest and use .fileprovider class name in java code.

     
            
        
    
    
    
    Couldn't find meta-data for provider with authority my.package.name.fileprovider
    

    Just rename fileprovider to provider

提交回复
热议问题