
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
react-native-android-function
Advanced tools
$ npm install react-native-android-function --save
$ react-native link react-native-android-function
android/app/src/main/java/[...]/MainActivity.java
import com.zappi.android.function.AndroidFunctionPackage;
to the imports at the top of the filenew AndroidFunctionPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-android-function'
project(':react-native-android-function').projectDir = new File(rootProject.projectDir,'../node_modules/react-native-android-function/android/app')
android/app/build.gradle
:
compile project(':react-native-android-function')
import AndroidFunction from 'react-native-android-function';
AndroidFunction.Youtube(url);
Prop | Type | Default | Note |
---|---|---|---|
url | string | URL of the Youtube video to open. | |
fullscreen | boolean | true | It allows you to choose whether to view the video in fullscreen mode. |
AndroidFunction.Youtube(url,fullscreen);
Prop | Type | Default | Note |
---|---|---|---|
url | string | URL of the YouTube video to open. | |
fullscreen | boolean | It allows you to choose whether to view the video in fullscreen mode. |
AndroidFunction.Facebook(id);
Prop | Type | Default | Note |
---|---|---|---|
id | string | Id of Facebook profile to open. |
AndroidFunction.Instagram(id);
Prop | Type | Default | Note |
---|---|---|---|
id | string | Id of Instagram profile to open. |
AndroidFunction.Twitter(id);
Prop | Type | Default | Note |
---|---|---|---|
id | string | Id of Twitter profile to open. |
AndroidFunction.GooglePlayStore(id);
Prop | Type | Default | Note |
---|---|---|---|
id | string | Id of Google Play Store profile to open. |
AndroidFunction.GooglePlayStore();
Open as intent the google play store passing id in the app in use it is on the google play store.
AndroidFunction.General(appIntent,setPackage,webIntent);
Prop | Type | Default | Note |
---|---|---|---|
appIntent | string | ||
setPackage | string | ||
webIntent | string |
AndroidFunction.ShortCuts(urlImg,cropped,shortLabel,longLabel,appUri,setPackage);
Prop | Type | Default | Note |
---|---|---|---|
urlImg | string | Url of the image. | |
cropped | boolean | Ability of skill the rounding of the image. | |
shortLabel | string | ||
longLabel | string | ||
appUri | string | ||
setPackage | string |
AndroidFunction.ShortCutsType(urlImg,cropped,shortLabel,longLabel,type,id);
Prop | Type | Default | Note |
---|---|---|---|
urlImg | string | Url of the image. | |
cropped | boolean | Ability of skill the rounding of the image. | |
shortLabel | string | ||
longLabel | string | ||
type | string | What kind of intent to use: facebook,instagram,twitter,googleplaystore | |
id | string | id of the user to pass |
import * as React from 'react';
import { Text, View, StyleSheet, ToastAndroid } from 'react-native';
import AndroidFunction from 'react-native-android-function';
AndroidFunction.pinnedShortcuts.setShortcutItems([
{
typeImg: 'icon',
icon: {
family: 'Entypo',
name: 'browser',
colorIcon: '#90a4ae',
colorCircle: '#000000',
},
shortLabel: 'Browser',
longLabel: 'Open Browser',
typeIntent: 'uri',
appUri: 'https://www.google.com/',
},
{
typeImg: 'url',
urlImg:
'http://images.amcnetworks.com/bbcamerica.com/wp-content/uploads/2017/05/anglo_2000x1125_larapulver-e1495023889751-640x360.jpg',
shortLabel: 'Pulver',
longLabel: 'Lara Pulver',
typeIntent: 'uri',
appUri: 'https://twitter.com/larapulver',
setPackage: 'com.twitter.android',
},
{
typeImg: 'letter',
colorText: '#ffffff',
colorCircle: '#e57373',
shortLabel: 'Watson',
longLabel: 'Emma Watson',
typeIntent: 'uri',
appUri: 'https://www.instagram.com/_u/emmawatson/',
setPackage: 'com.instagram.android',
},
{
typeImg: 'icon',
icon: {
family: 'MaterialCommunityIcons',
name: 'emoticon-happy',
},
shortLabel: 'App pass param',
longLabel: 'Open App',
typeIntent: 'app',
infoIntent: {
name: 'Megan',
surname: 'Fox',
urlImg:
'https://scontent-mxp1-1.cdninstagram.com/vp/3c4732c2cd3566727dad10f03c04b7bd/5C9241C4/t51.2885-19/s150x150/34706107_1875460276079648_8096847319644766208_n.jpg',
age: 32,
height: '1.63 m',
},
},
]);
export default class ExampleShortcuts extends React.Component {
constructor() {
super();
this.state = {
data: {},
};
}
componentDidMount() {
AndroidFunction.pinnedShortcuts
.popInitialAction()
.then(data => {
if (Object.keys(data).length == 0 || Object.keys(data.obj).length == 0)
return;
console.log('App3:', data);
this.setState({ data: data.obj });
ToastAndroid.show(data.obj.name, ToastAndroid.SHORT);
})
.catch(console.error);
}
render() {
const { data } = this.state;
return (
<View style={styles.container}>
<Text style={styles.paragraph}>Quick Action: {(data.name && data.name+" "+data.surname) || 'None'}</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: '#ecf0f1',
padding: 8,
},
paragraph: {
margin: 24,
fontSize: 18,
fontWeight: 'bold',
textAlign: 'center',
},
});
Prop | Type | Default | Note |
---|---|---|---|
typeImg | string | letter | url, icon, letter |
icon | object | icon, you can only use it as the typeImg is icon. | |
colorText | string | #FFFFFF | Text color, you can only use it as the typeImg is letter. |
colorCircle | string | #64B5F6 | Circle color, you can only use it as the typeImg is letter. |
urlImg | string | Image url, you can only use it as the typeImg is url. | |
shortLabel | string | ||
longLabel | string | ||
typeIntent | string | app | Uri , allows you to open an intent to an external app, see: examples App , allows you to open the app itself by passing the objects defined in infoIntent, see: infoIntent |
appUri | string | ||
setPackage | string | ||
infoIntent | object | infoIntent, you can only use it as the typeIntent is app. |
Prop | Type | Default | Note |
---|---|---|---|
family | string | Icon family type | |
name | string | Icon name | |
colorText | string | #FFFFFF | Text color. |
colorCircle | string | #64B5F6 | Circle color. |
See: react-native-vector-icons To search for icons: react-native-vector-icons
appUri | setPackage | Note |
---|---|---|
https://www.google.com/ |
appUri | setPackage | Note |
---|---|---|
https://www.facebook.com/ +id | com.facebook.katana | |
fb://facewebmodal/f?href=https://www.facebook.com/ +id | com.facebook.katana |
appUri | setPackage | Note |
---|---|---|
http://instagram.com/ +id | com.instagram.android | |
http://instagram.com/_u/ +id | com.instagram.android |
appUri | setPackage | Note |
---|---|---|
https://twitter.com/ +id | com.twitter.android | |
twitter://user?screen_name= +id | com.twitter.android | |
https://twitter.com/intent/tweet?text=%23 +text | ||
https://twitter.com/search?f=tweets&q= +text |
appUri | setPackage | Note |
---|---|---|
https://play.google.com/store/apps/details?id= +id | com.android.vending | |
market://details?id= +id | com.android.vending |
appUri | setPackage | Note |
---|---|---|
http://www.youtube.com/watch?v= +id | ||
vnd.youtube: +id |
infoIntent: {
paramOne: 21,//int
paramTwo: "James Bond",//string
paramThree: 0.07,//float
....
}
#e57373
#f06292
#ba68c8
#9575cd
#7986cb
#64b5f6
#4fc3f7
#4dd0e1
#4db6ac
#81c784
#aed581
#dce775
#fff176
#ffd54f
#ffb74d
#ff8a65
#a1887f
#e0e0e0
#90a4ae
#000000
This library is provided under the Apache License.
FAQs
React native library, contains a set of functions.
The npm package react-native-android-function receives a total of 0 weekly downloads. As such, react-native-android-function popularity was classified as not popular.
We found that react-native-android-function demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.