You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/01/31 15:16:38 UTC

[GitHub] ankitjainOfficial commented on issue #419: No camera permission in Android app.

ankitjainOfficial commented on issue #419: No camera permission in Android app.
URL: https://github.com/apache/cordova-plugin-camera/issues/419#issuecomment-459381608
 
 
   And here is the `AndroidManifest.xml`
   
   ```
   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
   <manifest android:hardwareAccelerated="true" android:versionCode="60200" android:versionName="6.2.0" package="com.test.app" xmlns:android="http://schemas.android.com/apk/res/android">
     <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true"/>
     <uses-permission android:name="android.permission.INTERNET"/>
     <uses-permission android:name="android.permission.CALL_PHONE"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
     <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
     <uses-permission android:name="android.permission.SEND_SMS"/>
     <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
     <uses-permission android:name="android.permission.BLUETOOTH"/>
     <application android:hardwareAccelerated="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:supportsRtl="true">
       <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTask" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
         <intent-filter android:label="@string/launcher_name">
           <action android:name="android.intent.action.MAIN"/>
           <category android:name="android.intent.category.LAUNCHER"/>
         </intent-filter>
         <intent-filter android:name="io.branch.sdk.UriScheme">
           <action android:name="android.intent.action.VIEW"/>
           <category android:name="android.intent.category.DEFAULT"/>
           <category android:name="android.intent.category.BROWSABLE"/>
           <data android:scheme="test"/>
         </intent-filter>
         <intent-filter android:name="io.branch.sdk.AppLink" android:autoVerify="true">
           <action android:name="android.intent.action.VIEW"/>
           <category android:name="android.intent.category.DEFAULT"/>
           <category android:name="android.intent.category.BROWSABLE"/>
           <data android:host="fleb.app.link" android:scheme="https"/>
           <data android:host="fleb-alternate.app.link" android:scheme="https"/>
         </intent-filter>
       </activity>
       <activity android:name="com.soundcloud.android.crop.CropImageActivity"/>
       <provider android:authorities="${applicationId}.provider" android:exported="false" android:grantUriPermissions="true" android:name="org.apache.cordova.camera.FileProvider">
         <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/camera_provider_paths"/>
       </provider>
       <provider android:authorities="${applicationId}.provider" android:exported="false" android:grantUriPermissions="true" android:name="de.appplant.cordova.emailcomposer.Provider">
         <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/emailcomposer_provider_paths"/>
       </provider>
       <provider android:authorities="${applicationId}.sharing.provider" android:exported="false" android:grantUriPermissions="true" android:name="nl.xservices.plugins.FileProvider">
         <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/sharing_paths"/>
       </provider>
       <meta-data android:name="com.google.android.geo.API_KEY" android:value="AIzaSyB"/>
       <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
       <meta-data android:name="io.branch.sdk.BranchKey" android:value="key_live_"/>
       <meta-data android:name="io.branch.sdk.TestMode" android:value="false"/>
       <uses-library android:name="org.apache.http.legacy" android:required="false"/>
       <receiver android:enabled="true" android:name="nl.xservices.plugins.ShareChooserPendingIntent">
         <intent-filter>
           <action android:name="android.intent.action.SEND"/>
         </intent-filter>
       </receiver>
       <receiver android:name="io.branch.referral.InstallListener" android:exported="true">
         <intent-filter>
           <action android:name="com.android.vending.INSTALL_REFERRER"/>
         </intent-filter>
       </receiver>
     </application>
     <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27"/>
     <uses-feature android:name="android.hardware.telephony" android:required="false"/>
     <uses-feature android:name="android.hardware.location.gps"/>
     <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
     <uses-feature android:name="android.hardware.location"/>
   </manifest>
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org