File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed
src/main/java/org/wordpress/android/editor Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,12 @@ dependencies {
4343 debugCompile project(path :' :libs:utils:WordPressUtils' , configuration : ' debug' )
4444}
4545
46+ configurations. all {
47+ // Exclude packaged wordpress sub projects, force the use of the source project
48+ // (eg. use :libs:utils:WordPressUtils instead of 'org.wordpress:utils')
49+ exclude group : ' org.wordpress' , module : ' utils'
50+ }
51+
4652signing {
4753 required {
4854 project. properties. containsKey(" signing.keyId" ) && project. properties. containsKey(" signing.secretKeyRingFile" )
Original file line number Diff line number Diff line change 1515
1616import org .wordpress .android .util .AppLog ;
1717import org .wordpress .android .util .AppLog .T ;
18+ import org .wordpress .android .util .helpers .MediaFile ;
1819
1920import java .io .BufferedReader ;
2021import java .io .IOException ;
@@ -143,4 +144,9 @@ public CharSequence getContent() {
143144 // TODO
144145 return null ;
145146 }
147+
148+ @ Override
149+ public void appendMediaFile (MediaFile mediaFile ) {
150+ // TODO
151+ }
146152}
Original file line number Diff line number Diff line change 33import android .app .Activity ;
44import android .app .Fragment ;
55
6+ import org .wordpress .android .util .helpers .MediaFile ;
7+
68public abstract class EditorFragmentAbstract extends Fragment {
79 public abstract void setTitle (CharSequence text );
810 public abstract void setContent (CharSequence text );
911 public abstract CharSequence getTitle ();
1012 public abstract CharSequence getContent ();
13+ public abstract void appendMediaFile (MediaFile mediaFile );
1114
1215 protected EditorFragmentListener mEditorFragmentListener ;
1316
Original file line number Diff line number Diff line change 11include ' :WordPressEditor'
22include ' :example'
3- include ' :libs:WordPressUtils'
3+ include ' :libs:utils: WordPressUtils'
You can’t perform that action at this time.
0 commit comments