Fix invalid package name and Remove unsupported prop in Image.android.js

Summary:
1. `textfrescosupport` -> `text.frescosupport`
2. `defaultImageSrc`, `imageTag` and `progressHandlerRegistered` looks like never exists in `ReactImageManager.java`
Closes https://github.com/facebook/react-native/pull/9885

Differential Revision: D3864980

fbshipit-source-id: 48a85563c60b6853c505177558520f5e48f4eb03
This commit is contained in:
leeight
2016-09-14 13:41:29 -07:00
committed by Facebook Github Bot 9
parent d4dff25292
commit 3182b608fc
3 changed files with 2 additions and 5 deletions

View File

@@ -336,9 +336,6 @@ var cfg = {
nativeOnly: {
src: true,
loadingIndicatorSrc: true,
defaultImageSrc: true,
imageTag: true,
progressHandlerRegistered: true,
shouldNotifyLoadEvents: true,
},
};

View File

@@ -24,7 +24,7 @@ import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.uimanager.annotations.ReactProp;
import com.facebook.react.views.text.ReactTextInlineImageShadowNode;
import com.facebook.react.views.text.TextInlineImageSpan;
import com.facebook.react.views.textfrescosupport.FrescoBasedReactTextInlineImageSpan;
import com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageSpan;
/**
* {@link CSSNode} that represents an inline image. Loading is done using Fresco.

View File

@@ -7,7 +7,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
package com.facebook.react.views.textfrescosupport;
package com.facebook.react.views.text.frescosupport;
import javax.annotation.Nullable;