name java classes using the '/' separator and not '.'

This commit is contained in:
Laurent Sansonetti
2014-02-11 20:07:11 +01:00
parent 49c71e7af8
commit df2c280353

View File

@@ -459,6 +459,7 @@ task :android do
EOS
txt = File.read(javap_tmp_path)
txt.scan(/([^\s]+)\s+extends\s+[^{]+\s*\{([^}]+)\}/).each do |klass, body_txt|
klass = klass.gsub(/\./, '/')
bs_data << <<EOS
<class name=\"#{klass}\">
EOS