[DEBUG] correct android signing property
This commit is contained in:
parent
31fb9818ff
commit
43c0ec2535
@ -104,7 +104,8 @@ class Module:
|
||||
"ANDROID_WALLPAPER_PROPERTIES" : [], # To create properties of the wallpaper (no use of EWOL display)
|
||||
"RIGHT" : [],
|
||||
"LICENSE" : "", # by default: no license
|
||||
"ADMOD_POSITION" : "top"
|
||||
"ADMOD_POSITION" : "top",
|
||||
"ANDROID_SIGN" : "no_file.jks"
|
||||
}
|
||||
self.package_prop_default = { "COMPAGNY_TYPE" : True,
|
||||
"COMPAGNY_NAME" : True,
|
||||
@ -123,7 +124,8 @@ class Module:
|
||||
"ANDROID_WALLPAPER_PROPERTIES" : True,
|
||||
"RIGHT" : True,
|
||||
"LICENSE" : True,
|
||||
"ADMOD_POSITION" : True
|
||||
"ADMOD_POSITION" : True,
|
||||
"ANDROID_SIGN" : True
|
||||
}
|
||||
self.sub_heritage_list = None
|
||||
|
||||
@ -979,7 +981,8 @@ class Module:
|
||||
"ANDROID_APPL_TYPE",
|
||||
"ADMOD_ID",
|
||||
"APPLE_APPLICATION_IOS_ID",
|
||||
"LICENSE"]:
|
||||
"LICENSE",
|
||||
"ANDROID_SIGN"]:
|
||||
self.package_prop[variable] = value
|
||||
self.package_prop_default[variable] = False
|
||||
elif "ADMOD_POSITION" == variable:
|
||||
|
@ -467,7 +467,7 @@ class Target(target.Target):
|
||||
print("On release mode we need the file : and key an pasword to sign the application ...")
|
||||
debug.print_element("pkg", ".apk(signed debug)", "<==", ".apk (not signed)")
|
||||
cmdLine = "jarsigner " \
|
||||
+ " -keystore " + base_pkg_path + "/AndroidKey.jks " \
|
||||
+ " -keystore " + pkg_properties["ANDROID_SIGN"] + " " \
|
||||
+ " -sigalg SHA1withRSA -digestalg SHA1 " \
|
||||
+ target_outpath + "/build/" + pkg_name_application_name + "-unalligned.apk " \
|
||||
+ " " + pkg_name_application_name
|
||||
|
Loading…
x
Reference in New Issue
Block a user