mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
FinfAgent (FlurryAgent replacement) srclib
This commit is contained in:
parent
5fca89ab85
commit
9bf75d830a
1 changed files with 11 additions and 0 deletions
|
|
@ -1170,6 +1170,17 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
|
||||||
vcs.gotorevision(ref)
|
vcs.gotorevision(ref)
|
||||||
return sdir
|
return sdir
|
||||||
|
|
||||||
|
if name == 'FinfAgent':
|
||||||
|
sdir = os.path.join(extlib_dir, 'FinfAgent')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://github.com/uniqdom/FinfAgent.git', sdir, sdk_path)
|
||||||
|
vcs.gotorevision(ref)
|
||||||
|
if subprocess.call([os.path.join(sdk_path, 'tools', 'android'),
|
||||||
|
'update', 'project', '-p',
|
||||||
|
sdir]) != 0:
|
||||||
|
raise BuildException('Error updating FinfAgent project')
|
||||||
|
return sdir
|
||||||
|
|
||||||
if name == 'MobAdMob':
|
if name == 'MobAdMob':
|
||||||
sdir = os.path.join(extlib_dir, 'MobAdMob')
|
sdir = os.path.join(extlib_dir, 'MobAdMob')
|
||||||
vcs = getvcs('git',
|
vcs = getvcs('git',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue