File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ android {
103
103
applicationId " edu.ucsd"
104
104
minSdkVersion 16
105
105
targetSdkVersion 22
106
- versionCode 45
106
+ versionCode 46
107
107
versionName " 5.6"
108
108
ndk {
109
109
abiFilters " armeabi-v7a" , " x86"
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
- import { Text , Share } from 'react-native'
2
+ import { Text , Share , Platform } from 'react-native'
3
3
import Toast from 'react-native-simple-toast'
4
4
5
5
import css from '../../styles/css'
@@ -19,7 +19,7 @@ class ShareContent extends React.Component {
19
19
}
20
20
21
21
_showResult = ( result ) => {
22
- if ( result . action === Share . sharedAction ) {
22
+ if ( result . action === Share . sharedAction && Platform . OS === 'ios' ) {
23
23
Toast . showWithGravity ( 'Shared' , Toast . SHORT , Toast . CENTER )
24
24
}
25
25
}
You can’t perform that action at this time.
0 commit comments