-
Notifications
You must be signed in to change notification settings - Fork 36
Add minSdkVersion to AndroidManifest.xml #12
Conversation
@kmagiera any chance this can get merged soon? |
Add minSdkVersion to AndroidManifest.xml
Thanks! |
@astreet thanks for merging it in, any idea on when you're going to push a new version to maven central? |
Ah, I'm not sure what the process is for that or who's maintaining it here, @kmagiera do you know? |
It was actually @brentvatne who pushed it to maven last time. As you can see there is not much stuff happening in this repo so we haven't been updating it since the initial release and don't have any process around releasing it. |
@astreet - I can push this next week if you like |
The question is what will we put as version number as atm it refers to JSC version number (from SVN) and JSC is not going to be updated this time |
Oh, yeah we should be using a version number specific to this repo and not exactly the JSC version number (which should be able to be derived from our own version number). |
@brentvatne do you have any updates about when you can publish a new version? |
ping, is it published, @brentvatne? |
So as I understand it, this fix has been withheld for ten months, because of a concern about the version number needing to match the original JSC version? Looks like the current version from Sept 2015 is r174650: Can't you just publish this as r174650.1 and be done with it? |
Ping, is there anything blocking this? Did Facebook forget that this package exists? I understand updating JavaScriptCore version is a hard task; but all this needs is one publish to Maven |
Try reaching out to maintainers via twitter |
@astreet @brentvatne @mkonicek (in case this works any better than twitter) |
I'm not going to open a Twitter account just for this library, but thanks for the suggestion. Since the repository is under facebook namespace in Github, I assumed this is the correct place to ping it. |
Wow this permission looks really scary: Allows read only access to phone state, including the phone number of the device, current cellular network information, the status of any ongoing calls, and a list of any PhoneAccounts registered on the device. |
I'll ping @brentvatne. |
Ah sorry, just read facebook/react-native#12965 which works around this - should be good using that. |
Not setting a minSdkVersion causes the Android build system to automatically add the READ_PHONE_STATE permission. (Default value of minSdkVersion and targetSdkVersion is 3)
From and Mainfest.permission docs:
http://developer.android.com/reference/android/Manifest.permission.html#READ_PHONE_STATE
Unfortunately I haven't been able to test this, as building android-jsc gives me a ton of errors, I guess the buildscript has to be adjusted a bit.
We initially saw this permission popping up on our app after adding the react-native dependency.