Skip to content

Commit

Permalink
Merge branch '1.0.15' of pnu/exodus-core into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
U039b authored and Gitea committed Jan 11, 2019
2 parents 685bab0 + b788e83 commit 31ba71e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion exodus_core/analysis/static_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def print_apk_infos(self):
print('- App permissions: %s' % len(permissions))
for p in permissions:
print(' - %s' % p)
print('- App libraries: %s' % len(libraries))
print('- App libraries:')
for l in libraries:
print(' - %s' % l)
print('- Certificates: %s' % len(certificates))
Expand Down
4 changes: 2 additions & 2 deletions exodus_core/analysis/test_exodus_analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ def test_trackers_list(self):

def test_icon_diff(self):
phash_4 = phash('./apks/nextcloud.apk')
self.assertEqual(phash_4, 325352301465779383961442563121869825536)
self.assertGreater(phash_4, 0)
phash_5 = phash('./apks/francetv.apk')
self.assertEqual(phash_5, 277543533468213633177527091973989793792)
self.assertGreater(phash_5, 0)
phash_1 = phash('./apks/braiar.apk')
phash_2 = phash('./apks/whatsapp.apk')
phash_3 = phash('./apks/hsbc.apk')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def is_exe(fpath):
]

setup(name = 'exodus_core',
version = '1.0.14',
version = '1.0.15',
description = 'Core functionality of εxodus',
author = 'Exodus Privacy',
author_email = '[email protected]',
Expand Down

0 comments on commit 31ba71e

Please sign in to comment.