Skip to content

Commit 096aa04

Browse files
committed
Manifest file update
1 parent ea2578b commit 096aa04

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ dependencies {
2727
compile 'com.android.support:appcompat-v7:25.0.0'
2828
compile project(":imageviewpopup")
2929
//compile 'com.github.chathuralakmal:AndroidImagePopup:-SNAPSHOT'
30-
//compile 'com.github.chathuralakmal:AndroidImagePopup:1.0.1'
30+
//compile 'com.github.chathuralakmal:AndroidImagePopup:1.0.6'
3131
testCompile 'junit:junit:4.12'
3232
}

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.fexcon.imgpopup">
3+
package="com.fexcon.imgpopup"
4+
xmlns:tools="http://schemas.android.com/tools">
45

56
<application
67
android:allowBackup="true"
78
android:icon="@mipmap/ic_launcher"
89
android:label="@string/app_name"
910
android:supportsRtl="true"
10-
android:theme="@style/AppTheme">
11+
android:theme="@style/AppTheme"
12+
tools:node="replace">
1113
<activity android:name=".MainActivity">
1214
<intent-filter>
1315
<action android:name="android.intent.action.MAIN" />

app/src/main/java/com/fexcon/imgpopup/MainActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ protected void onCreate(Bundle savedInstanceState) {
2929
/** Set Image Height, Width & Background Color as you want **/
3030
final ImagePopup imagePopup = new ImagePopup(this);
3131
//imagePopup.setBackgroundColor(Color.BLACK);
32-
// imagePopup.setWindowWidth(800);
33-
// imagePopup.setWindowHeight(800);
32+
imagePopup.setWindowWidth(800);
33+
imagePopup.setWindowHeight(800);
3434
imagePopup.setHideCloseIcon(true);
3535
imagePopup.setImageOnClickClose(true);
3636

0 commit comments

Comments
 (0)