Skip to content

Commit

Permalink
Merge pull request #17 from AliMehrpour/cryptography
Browse files Browse the repository at this point in the history
Cryptography
  • Loading branch information
AliMehrpour committed Mar 16, 2015
2 parents 799871a + c014270 commit 6afd6d4
Show file tree
Hide file tree
Showing 154 changed files with 2,172 additions and 868 deletions.
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
import android.view.View;
import android.widget.ListAdapter;

import com.afollestad.materialdialogs.MaterialDialog;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand All @@ -38,6 +36,11 @@ public Builder(@NonNull Context context) {
builder = new MaterialDialog.Builder(context);
}

public Builder autoDismiss(boolean dismiss) {
builder.autoDismiss(dismiss);
return this;
}

public Builder setMessage(@StringRes int messageId) {
builder.content(messageId);
return this;
Expand Down
94 changes: 0 additions & 94 deletions MaterialLibrary/MaterialLibrary.iml

This file was deleted.

24 changes: 0 additions & 24 deletions MaterialLibrary/build.gradle

This file was deleted.

17 changes: 0 additions & 17 deletions MaterialLibrary/proguard-rules.pro

This file was deleted.

12 changes: 0 additions & 12 deletions MaterialLibrary/src/main/AndroidManifest.xml

This file was deleted.

3 changes: 0 additions & 3 deletions MaterialLibrary/src/main/res/values/strings.xml

This file was deleted.

7 changes: 4 additions & 3 deletions eSecureBox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ android {
}

dependencies {
compile project(':MaterialLibrary')
compile project(':MaterialDialogs')
compile project(':MaterialDialogs')

compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'

compile 'com.parse.bolts:bolts-android:1.1.4'
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
compile fileTree(dir: 'libs', include: 'ParseCrashReporting-*.jar')
}

compile "com.mixpanel.android:mixpanel-android:4.5.3"
}
Binary file added eSecureBox/eSecureBox.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion eSecureBox/eSecureBox.iml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@
<orderEntry type="library" exported="" name="appcompat-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="ParseCrashReporting-1.8.0" level="project" />
<orderEntry type="library" exported="" name="support-annotations-21.0.3" level="project" />
<orderEntry type="library" exported="" name="mixpanel-android-4.5.3" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
<orderEntry type="library" exported="" name="Parse-1.8.0" level="project" />
<orderEntry type="library" exported="" name="bolts-android-1.1.4" level="project" />
<orderEntry type="library" exported="" name="recyclerview-v7-21.0.3" level="project" />
<orderEntry type="module" module-name="MaterialLibrary" exported="" />
<orderEntry type="module" module-name="MaterialDialogs" exported="" />
</component>
</module>
Expand Down
Loading

0 comments on commit 6afd6d4

Please sign in to comment.