diff --git a/src/components/TouchableRipple.js b/src/components/TouchableRipple.js index 7ecf0b46..fad338f4 100644 --- a/src/components/TouchableRipple.js +++ b/src/components/TouchableRipple.js @@ -13,6 +13,7 @@ import { withTheme } from '../core/theming'; import type { Theme } from '../types'; const ANDROID_VERSION_LOLLIPOP = 21; +const ANDROID_VERSION_NOUGAT = 27; type Props = React.ElementConfig & {| /** @@ -83,7 +84,9 @@ class TouchableRipple extends React.Component { * Whether ripple effect is supported. */ static supported = - Platform.OS === 'android' && Platform.Version >= ANDROID_VERSION_LOLLIPOP; + Platform.OS === 'android' && + Platform.Version >= ANDROID_VERSION_LOLLIPOP && + Platform.Version <= ANDROID_VERSION_NOUGAT; render() { const {