Exemple #1
0
 def get_dst_manifest_path(self):
     if self._config is not None and 'product_flavor' in self._config:
         if self._module_name == self._config['main_project_name']:
             if self._config['product_flavor'] == '' or self._config['product_flavor'] == 'debug':
                 return os.path.join(self.get_base_gen_dir(), 'manifests', 'full', 'debug', 'AndroidManifest.xml')
             else:
                 return os.path.join(self.get_base_gen_dir(), 'manifests', 'full', self._config['product_flavor'],
                                     'debug', 'AndroidManifest.xml')
     return android_tools.get_manifest_path(self._module_path)
Exemple #2
0
 def get_dst_manifest_path(self):
     if self._config is not None and 'product_flavor' in self._config:
         if self._module_name == self._config['main_project_name']:
             if self._config['product_flavor'] == '' or self._config['product_flavor'] == 'debug':
                 return os.path.join(self.get_base_gen_dir(), 'manifests', 'full', 'debug', 'AndroidManifest.xml')
             else:
                 return os.path.join(self.get_base_gen_dir(), 'manifests', 'full', self._config['product_flavor'],
                                     'debug', 'AndroidManifest.xml')
     return android_tools.get_manifest_path(self._module_path)
Exemple #3
0
 def get_dst_manifest_path(self):
     if self._config is not None and 'product_flavor' in self._config:
         if self._module_name == self._config['main_project_name']:
             if self._config['product_flavor'] == '' or self._config['product_flavor'] == 'debug':
                 path = os.path.join(self.get_base_gen_dir(), 'manifests', 'full', 'debug', 'AndroidManifest.xml')
             else:
                 path = os.path.join(self.get_base_gen_dir(), 'manifests', 'full', self._config['product_flavor'],
                                     'debug', 'AndroidManifest.xml')
             if os.path.exists(path):
                 return path
     path = android_tools.find_manifest(os.path.join(self.get_base_gen_dir(), 'manifests'))
     if path and os.path.exists(path):
         Logger.debug("find manifest: {}".format(path))
         return path
     return android_tools.get_manifest_path(self._module_path)
Exemple #4
0
 def get_dst_manifest_path(self):
     if self._config is not None and 'product_flavor' in self._config:
         if self._module_name == self._config['main_project_name']:
             if self._config['product_flavor'] == '' or self._config['product_flavor'] == 'debug':
                 path = os.path.join(self.get_base_gen_dir(), 'manifests', 'full', 'debug', 'AndroidManifest.xml')
             else:
                 path = os.path.join(self.get_base_gen_dir(), 'manifests', 'full', self._config['product_flavor'],
                                     'debug', 'AndroidManifest.xml')
             if os.path.exists(path):
                 return path
     path = android_tools.find_manifest(os.path.join(self.get_base_gen_dir(), 'manifests'))
     if path and os.path.exists(path):
         Logger.debug("find manifest: {}".format(path))
         return path
     return android_tools.get_manifest_path(self._module_path)