Posts

Showing posts from October, 2020
Image
  Building Simple browser application in android studio :- To build browser application in android studio first we need to create new project in android studio, to know how to create project in android studio you can check from  here   Lets add Internet permission in manifest file : adding internet permission in manifest  < manifest xmlns: android ="http://schemas.android.com/apk/res/android" package ="com.sam.webviewdemo" > < uses-permission android :name ="android.permission.INTERNET" /> < application android :allowBackup ="true" android :icon ="@mipmap/ic_launcher" android :label ="@string/app_name" android :roundIcon ="@mipmap/ic_launcher_round" android :supportsRtl ="true" android :theme ="@style/AppTheme" > < activity android :name =".MainActivity" > < intent-filter > ...
Image
  How to build torch light application in Android Studio :- To build torch light application in android studio first we need to create new project in android studio, to know how to create project in android studio you can check from  here   Lets add flashlight feature in manifest file: < uses-feature android:name ="android.hardware.camera.flash" />   Adding permission in manifest file  <? xml version ="1.0" encoding ="utf-8" ?> < manifest xmlns: android ="http://schemas.android.com/apk/res/android" package ="com.sam.torch" > < uses-feature android :name ="android.hardware.camera.flash" /> < application android :allowBackup ="true" android :icon ="@mipmap/ic_launcher" android :label ="@string/app_name" android :roundIcon ="@mipmap/ic_launcher_round" android :supportsRtl ="true" android :theme ...