Posts
Showing posts from 2020
Clone android project from BitBucket | How to clone the source through A...
- Get link
- X
- Other Apps
Firebase integration in Outsystem Studio - 2020 For Beginner | How to im...
- Get link
- X
- Other Apps
Google assistant app action implementation for ionic application
- Get link
- X
- Other Apps
Step 1: Install the deep link Cordova plugin https://ionicframework.com/docs/native/deeplinks ionic cordova plugin add ionic-plugin-deeplinks --variable URL_SCHEME=myapp --variable DEEPLINK_SCHEME=https --variable DEEPLINK_HOST=example.com --variable ANDROID_PATH_PREFIX=/ npm install @ionic-native/deeplinks Step 2: Create actions.xml file and place in the following directory resource/android/xml/actions.xml <? xml version = "1.0" encoding = "utf-8" ?> < actions > < action intentName = "actions.intent.OPEN_APP_FEATURE" > < fulfillment urlTemplate = "https://your_deeplinkurl_place_here/open{?featureName}" > < parameter-mapping intentParameter = "feature" ...
Android Material design components setup
- Get link
- X
- Other Apps
Hello guys, In this tutorial, the document will help to start with material design in android. If you are not yet implemented the material design component in your project, follow these step by step process to use the material component. M aterial D esign (MD) was designed by Google in 2014 . It's available to many Google application products Like Android, Angular, etc. It's available in the android lollipop version. M aterial D esign elements look like paper and ink design and some elements have hover effects and realistic shadow designs. Step 1: Make sure to check the google maven repository in build.gradle (Project) in your application. buildscript { repositories { google() //-----> Google Maven Repository jcenter() } Step 2: Add the latest material library in build.gradle (App Module) in your application. dependencies { implementation fileTree( dir : "libs" , include : [ "*.jar" ]) implementation 'androidx.ap...
Ionic 5 tutorial in Tamil 2020 for beginners | ஐயோனிக் டுடோரியல் தமிழில்
- Get link
- X
- Other Apps
Google assistant for mobile app | How to open app actions through google...
- Get link
- X
- Other Apps
Responsive Angular login and register form with PHP Restful Api - 2020 |...
- Get link
- X
- Other Apps
Google Assistant Implementation in Android application with app actions
- Get link
- X
- Other Apps
Process flow to create app action in android native: Step 1) Create action.xml with Built-In Intent and defined in androidmanifest.xml Step 2) Create deep link through firebase dynamic link SDK Step 3) Map the Deeplink with built-in Intent in android action.xml Step 4) Create the application in Playstore Step 5) Upload the signed apk in Playstore as save in draft Step 6) Open the app action testing tool from latest android studio after upload the apk in playstore Step 7) Login the same google account in playstore, android studio and android device Step 8) Make sure the check the same Locale language (en-Us) in Android device and action testing tool Built-In Intent & Sample Query: actions.intent. OPEN_APP_FEATURE - Open History in <innovationName> - Open sale in <innovationName> ...
Register & Login form in Angular 9 + Php + MySql + Reactive Form + Flex Layout
- Get link
- X
- Other Apps
Hi Friends, In this document is useful to create Register & Login using angular 9, Php & MySql and Flex Layout. Create an angular project and build the project ng new project_name cd project_name ng serve Open VS Code and import the angular project Install the material angular package and flex layout package ng add @angular/material npm I –s @angular/flex-layout Create a module file for material components and login/register/Home components ng generate module angular-material ng generate component login-register ng generate component home Use the below code in angular material module file. Material Module: Import the material module, Flex in app module.ts import { NgModule } from '@angular/core'; import {A11yModule} from '@angular/cdk/a11y'; import {ClipboardModule} from '@angular/cdk/clipboard'; import {DragDropModule} from '@angular/cdk/drag-drop'; import {PortalModule} from '@angular/...