diff options
-rw-r--r-- | .idea/libraries/library_1_2_3.xml | 10 | ||||
-rw-r--r-- | .idea/libraries/otto_1_3_5.xml | 6 | ||||
-rw-r--r-- | app/app.iml | 1 | ||||
-rw-r--r-- | app/build.gradle | 4 |
4 files changed, 18 insertions, 3 deletions
diff --git a/.idea/libraries/library_1_2_3.xml b/.idea/libraries/library_1_2_3.xml new file mode 100644 index 0000000..1c592d4 --- /dev/null +++ b/.idea/libraries/library_1_2_3.xml @@ -0,0 +1,10 @@ +<component name="libraryTable"> + <library name="library-1.2.3"> + <CLASSES> + <root url="jar://$PROJECT_DIR$/app/build/intermediates/exploded-aar/com.github.chrisbanes.photoview/library/1.2.3/classes.jar!/" /> + <root url="file://$PROJECT_DIR$/app/build/intermediates/exploded-aar/com.github.chrisbanes.photoview/library/1.2.3/res" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> +</component>
\ No newline at end of file diff --git a/.idea/libraries/otto_1_3_5.xml b/.idea/libraries/otto_1_3_5.xml index 8e9e540..629447d 100644 --- a/.idea/libraries/otto_1_3_5.xml +++ b/.idea/libraries/otto_1_3_5.xml @@ -1,9 +1,11 @@ <component name="libraryTable"> <library name="otto-1.3.5"> <CLASSES> - <root url="jar://$PROJECT_DIR$/app/libs/otto-1.3.5.jar!/" /> + <root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.squareup/otto/1.3.5/7941cd2c2c8ec006800d75c35f8a9dacf892ab93/otto-1.3.5.jar!/" /> </CLASSES> <JAVADOC /> - <SOURCES /> + <SOURCES> + <root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.squareup/otto/1.3.5/e8c1db15ea9b400667f00f722b6571f124a1c24b/otto-1.3.5-sources.jar!/" /> + </SOURCES> </library> </component>
\ No newline at end of file diff --git a/app/app.iml b/app/app.iml index 1576984..ad43377 100644 --- a/app/app.iml +++ b/app/app.iml @@ -61,6 +61,7 @@ </content> <orderEntry type="jdk" jdkName="Android API 19 Platform" jdkType="Android SDK" /> <orderEntry type="sourceFolder" forTests="false" /> + <orderEntry type="library" exported="" name="library-1.2.3" level="project" /> <orderEntry type="library" exported="" name="support-v4-19.1.0" level="project" /> <orderEntry type="library" exported="" name="otto-1.3.5" level="project" /> </component> diff --git a/app/build.gradle b/app/build.gradle index b522f85..cf01a63 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,5 +23,7 @@ dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) // You must install or update the Support Repository through the SDK manager to use this dependency. compile 'com.android.support:support-v4:19.+' - compile files('libs/otto-1.3.5.jar') + compile 'com.squareup:otto:1.3.5' + compile 'com.github.chrisbanes.photoview:library:1.2.3' + } |