Prafulla Raichurkar
Prafulla Raichurkar
**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** Right now the index page is just above the API definitions, it would be...
🙋♂️Heyya friends, I did some more research on GitHub action and found that people who are not aware of GitHub actions or are new to them, find it difficult to...
Enhance the output format in which the APIs are displayed in `standard` mode The code of the standard output generator can be found at `helpers/templateHelpers/standard` folder ℹ️ Here is a...
```java @ReactMethod public void isHotspotEnabled(Promise promise){ if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.O) { try{ Method method = wifi.getClass().getDeclaredMethod("getWifiApState"); method.setAccessible(true); int actualState = (Integer) method.invoke(wifi,null); if(actualState==13){ promise.resolve(true); } else{ promise.resolve(false); } }catch(Exception e){...