rake-delphi 0.0.25 → 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -1
- data/Rakefile.rb +1 -0
- data/lib/rake/delphi/dcc32.rb +9 -4
- data/lib/rake/delphi/envvariables.rb +4 -2
- data/lib/rake/delphi/paclient.rb +1 -0
- data/lib/rake/delphi/tool.rb +4 -3
- data/lib/rake/delphi/version.rb +1 -1
- data/rake-delphi.gemspec +2 -1
- data/test/helpers/consts.rb +1 -1
- data/test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas +0 -0
- data/test/resources/testproject-android/lib/AnyLib/LibUnit.pas +0 -0
- data/test/resources/testproject/testproject.rc +3 -5
- data/test/test-delphi-android.rb +11 -5
- metadata +16 -24
- data/1.patch +0 -30
- data/Messages.txt +0 -336
- data/test/resources/FakeDelphi/dcc32.exe +0 -0
- data/test/resources/FakeDelphi/rc.exe +0 -0
- data/test/resources/testproject-android/AndroidManifest.xml +0 -35
- data/test/resources/testproject-android/TestProject.cfg +0 -4
- data/test/resources/testproject-android/TestProject.cfg.1 +0 -8
- data/test/resources/testproject-android/TestProject.rc +0 -62
- data/test/resources/testproject-android/TestProject.res +0 -0
- data/test/resources/testproject/resources.res +0 -0
- data/test/resources/testproject/testproject.cfg.1 +0 -8
- data/test/resources/testproject/testproject.res +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abc299482fa6682f73b068821fef3ef80f01441c
|
4
|
+
data.tar.gz: 3e1a9fd7c4a82e557e3b8531d2afb3ad20ce63f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 108a55b7f67d2a0dba3396da9d622e5a1106d38831f549d01e3b0e3444b674ad1c6beed58165d3c1f4037aad9250d50574d74a181e0164b8690250cf3956bec8
|
7
|
+
data.tar.gz: b688db21b2a032e723873dd061e7adf5d2ed7f7885782ac0f0ef59da5e05ee2197503e50c46abae1693b88ee4a02ecec74cd5ea658fc5b3aef009dab2cdb252d
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rake-delphi (0.0.
|
4
|
+
rake-delphi (0.0.26)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -9,6 +9,7 @@ GEM
|
|
9
9
|
apktools (0.6.0)
|
10
10
|
rubyzip
|
11
11
|
inifile (3.0.0)
|
12
|
+
minitest (4.7.5)
|
12
13
|
rake (10.0.4)
|
13
14
|
rubyzip (0.9.9)
|
14
15
|
xml-simple (1.1.4)
|
@@ -20,6 +21,7 @@ DEPENDENCIES
|
|
20
21
|
apktools
|
21
22
|
bundler (~> 1.3)
|
22
23
|
inifile
|
24
|
+
minitest (~> 4.3)
|
23
25
|
rake (~> 10.0.4)
|
24
26
|
rake-delphi!
|
25
27
|
rubyzip (~> 0.9.9)
|
data/Rakefile.rb
CHANGED
data/lib/rake/delphi/dcc32.rb
CHANGED
@@ -65,12 +65,16 @@ module Rake
|
|
65
65
|
|
66
66
|
def dcu=(value)
|
67
67
|
# delete previously defined
|
68
|
+
Logger.trace(Logger::TRACE, "New DCU set: #{value}")
|
68
69
|
@prerequisites.delete_if do |d|
|
69
|
-
if d.kind_of?(Rake::FileCreationTask)
|
70
|
-
|
70
|
+
if d.kind_of?(Rake::FileCreationTask) && d.name.casecmp(@dcu) == 0
|
71
|
+
Logger.trace(Logger::TRACE, "Removed previously defined DCU task: #{@dcu}")
|
72
|
+
true
|
71
73
|
end
|
72
74
|
end
|
73
|
-
@dcu = value
|
75
|
+
@dcu = File.expand_path(value, dpr)
|
76
|
+
Logger.trace(Logger::TRACE, "DPR path: #{dpr}")
|
77
|
+
Logger.trace(Logger::TRACE, "Define new DCU task: #{@dcu}")
|
74
78
|
dcu_task = directory @dcu
|
75
79
|
enhance([dcu_task])
|
76
80
|
end
|
@@ -223,6 +227,8 @@ module Rake
|
|
223
227
|
|
224
228
|
def init(properties)
|
225
229
|
Logger.trace(Logger::TRACE, properties)
|
230
|
+
# set @_source BEFORE properties
|
231
|
+
@_source = properties[:projectfile].pathmap('%X.dpr')
|
226
232
|
properties.map do |key, value|
|
227
233
|
begin
|
228
234
|
send("#{key}=", value)
|
@@ -230,7 +236,6 @@ module Rake
|
|
230
236
|
instance_variable_set("@#{key}", value)
|
231
237
|
end
|
232
238
|
end
|
233
|
-
@_source = properties[:projectfile].pathmap('%X.dpr')
|
234
239
|
src = @_source.gsub('\\', '/')
|
235
240
|
# make sure to create dir for output dcu
|
236
241
|
# for now default is <PROJECTDIR>/dcu
|
@@ -32,13 +32,15 @@ module Rake
|
|
32
32
|
begin
|
33
33
|
::Win32::Registry::HKEY_CURRENT_USER.open(regpath) do |reg|
|
34
34
|
reg.each do |name|
|
35
|
+
Logger.trace(Logger::DEBUG, "Reading: #{name}")
|
35
36
|
reg_type, value = reg.read(name)
|
37
|
+
Logger.trace(Logger::TRACE, "Value: #{value}")
|
36
38
|
value.gsub!('\\', '/')
|
37
39
|
add(name, value)
|
38
40
|
end
|
39
41
|
end
|
40
|
-
rescue ::Win32::Registry::Error
|
41
|
-
Logger.trace(Logger::DEBUG, "No reg key '%s'?!" % regpath)
|
42
|
+
rescue ::Win32::Registry::Error => e
|
43
|
+
Logger.trace(Logger::DEBUG, "No reg key '%s'?! %s" % [regpath, e.message])
|
42
44
|
end
|
43
45
|
rescue LoadError
|
44
46
|
Logger.trace(Logger::DEBUG, 'No `win32/registry` gem?!')
|
data/lib/rake/delphi/paclient.rb
CHANGED
data/lib/rake/delphi/tool.rb
CHANGED
@@ -64,11 +64,12 @@ module Rake
|
|
64
64
|
::Win32::Registry::HKEY_CURRENT_USER.open(root) do |reg|
|
65
65
|
key_exists = true
|
66
66
|
reg_typ, reg_val = reg.read(name)
|
67
|
+
Logger.trace(Logger::TRACE, "Value: #{reg_val}")
|
67
68
|
return reg_val.gsub('\\', '/')
|
68
69
|
end
|
69
|
-
rescue ::Win32::Registry::Error
|
70
|
-
Logger.trace(Logger::DEBUG, "No reg key '%s'?!" % \
|
71
|
-
(key_exists ? "#{root}\\#{name}" : root))
|
70
|
+
rescue ::Win32::Registry::Error => e
|
71
|
+
Logger.trace(Logger::DEBUG, "No reg key '%s'?! %s" % \
|
72
|
+
[(key_exists ? "#{root}\\#{name}" : root), e.message])
|
72
73
|
return ''
|
73
74
|
end
|
74
75
|
rescue LoadError
|
data/lib/rake/delphi/version.rb
CHANGED
data/rake-delphi.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
# avoid adding redundant files
|
19
19
|
spec.files.delete_if do |f|
|
20
20
|
match = false
|
21
|
-
[/\/test\/tmp\//, /\/dcu\//, /\.drc$/].each do |re|
|
21
|
+
[/\/test\/tmp\//, /\/dcu\//, /\.(drc|res|exe)$/].each do |re|
|
22
22
|
match = re.match(f)
|
23
23
|
break if match
|
24
24
|
end
|
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.require_paths = ["lib"]
|
30
30
|
|
31
31
|
spec.add_development_dependency "bundler", "~> 1.3"
|
32
|
+
spec.add_development_dependency "minitest", "~> 4.3"
|
32
33
|
spec.add_development_dependency "rake", "~> 10.0.4"
|
33
34
|
spec.add_development_dependency "xml-simple"
|
34
35
|
spec.add_development_dependency "rubyzip", "~> 0.9.9"
|
data/test/helpers/consts.rb
CHANGED
File without changes
|
File without changes
|
@@ -21,9 +21,7 @@
|
|
21
21
|
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
22
|
|
23
23
|
LANGUAGE 0x19, 0x01
|
24
|
-
|
25
|
-
MAINICON ICON "C:/cygwin/home/ashu/projects/MobileClientAlfaAuto/lib/rake-delphi/test/resources/testproject/testproject.ico"
|
26
|
-
#endif
|
24
|
+
MAINICON ICON "C:/cygwin/home/ashu/v3_0/lib/rake-delphi/test/resources/testproject/testproject.ico"
|
27
25
|
1 VERSIONINFO
|
28
26
|
FILEVERSION 0,0,0,0
|
29
27
|
PRODUCTVERSION 1,2,3,4
|
@@ -37,13 +35,13 @@ BEGIN
|
|
37
35
|
BLOCK "041904E3"
|
38
36
|
BEGIN
|
39
37
|
VALUE "CompanyName", "Rake\0"
|
40
|
-
VALUE "FileDescription", "Test rake-delphi project
|
38
|
+
VALUE "FileDescription", "Test rake-delphi project 2006 description\0"
|
41
39
|
VALUE "FileVersion", "0.0.0.0\0"
|
42
40
|
VALUE "InternalName", "testproject.exe\0"
|
43
41
|
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
42
|
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
43
|
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
-
VALUE "ProductName", "Test rake-delphi project
|
44
|
+
VALUE "ProductName", "Test rake-delphi project 2006 product name\0"
|
47
45
|
VALUE "ProductVersion", "1.2.3.4\0"
|
48
46
|
VALUE "Comments", "Test project comment\0"
|
49
47
|
#ifdef DEBUG
|
data/test/test-delphi-android.rb
CHANGED
@@ -48,6 +48,10 @@ module DelphiAndroidTests
|
|
48
48
|
end
|
49
49
|
|
50
50
|
private
|
51
|
+
def _name_as_path(name)
|
52
|
+
name.gsub(/[():]/, '_')
|
53
|
+
end
|
54
|
+
|
51
55
|
def _test_apk(apk)
|
52
56
|
entries = []
|
53
57
|
Zip::ZipFile.open(apk) do |zip|
|
@@ -77,10 +81,12 @@ module DelphiAndroidTests
|
|
77
81
|
end
|
78
82
|
|
79
83
|
bin_dir = File.dirname(apk)
|
80
|
-
dcu_dir_rel =
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
+
dcu_dir_rel = "../../../tmp/#{_name_as_path(self.class.name)}/dcu"
|
85
|
+
[bin_dir].each do |d|
|
86
|
+
d = File.expand_path(d)
|
87
|
+
puts "mkdir #{d}"
|
88
|
+
FileUtils.mkdir_p(bin_dir)
|
89
|
+
end
|
84
90
|
# reenable task for subsequent calls
|
85
91
|
prepare_task = ::Rake::Task['test_android:prepare']
|
86
92
|
prepare_task.reenable
|
@@ -104,7 +110,7 @@ module DelphiAndroidTests
|
|
104
110
|
end
|
105
111
|
|
106
112
|
def apk
|
107
|
-
return PROJECT_APK %
|
113
|
+
return PROJECT_APK % [_name_as_path(self.class.name), _name_as_path(name)]
|
108
114
|
end
|
109
115
|
|
110
116
|
public
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-delphi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexey Shumkin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: minitest
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.3'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: rake
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,11 +101,9 @@ executables: []
|
|
87
101
|
extensions: []
|
88
102
|
extra_rdoc_files: []
|
89
103
|
files:
|
90
|
-
- 1.patch
|
91
104
|
- Gemfile
|
92
105
|
- Gemfile.lock
|
93
106
|
- LICENSE.txt
|
94
|
-
- Messages.txt
|
95
107
|
- README.md
|
96
108
|
- Rakefile.rb
|
97
109
|
- lib/rake/common/chdirtask.rb
|
@@ -136,8 +148,6 @@ files:
|
|
136
148
|
- rake-delphi.gemspec
|
137
149
|
- test/helpers/consts.rb
|
138
150
|
- test/helpers/verinfo.rb
|
139
|
-
- test/resources/FakeDelphi/dcc32.exe
|
140
|
-
- test/resources/FakeDelphi/rc.exe
|
141
151
|
- test/resources/echo/file.in
|
142
152
|
- test/resources/echo/file.out
|
143
153
|
- test/resources/hashes/hash.2.file
|
@@ -147,14 +157,9 @@ files:
|
|
147
157
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
148
158
|
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
149
159
|
- test/resources/testproject-android/AndroidManifest.erb
|
150
|
-
- test/resources/testproject-android/AndroidManifest.xml
|
151
160
|
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
152
161
|
- test/resources/testproject-android/Rakefile.rb
|
153
|
-
- test/resources/testproject-android/TestProject.cfg
|
154
|
-
- test/resources/testproject-android/TestProject.cfg.1
|
155
162
|
- test/resources/testproject-android/TestProject.dpr
|
156
|
-
- test/resources/testproject-android/TestProject.rc
|
157
|
-
- test/resources/testproject-android/TestProject.res
|
158
163
|
- test/resources/testproject-android/TestProject.xe5.dproj
|
159
164
|
- test/resources/testproject-android/TestProject.xe7.dproj
|
160
165
|
- test/resources/testproject-android/external/module.ext
|
@@ -170,16 +175,13 @@ files:
|
|
170
175
|
- test/resources/testproject/local.resources.txt
|
171
176
|
- test/resources/testproject/release.dcc.cfg
|
172
177
|
- test/resources/testproject/resources.rc
|
173
|
-
- test/resources/testproject/resources.res
|
174
178
|
- test/resources/testproject/testproject.2006.bdsproj
|
175
179
|
- test/resources/testproject/testproject.2007.dproj
|
176
180
|
- test/resources/testproject/testproject.2010.dproj
|
177
181
|
- test/resources/testproject/testproject.cfg
|
178
|
-
- test/resources/testproject/testproject.cfg.1
|
179
182
|
- test/resources/testproject/testproject.dpr
|
180
183
|
- test/resources/testproject/testproject.ico
|
181
184
|
- test/resources/testproject/testproject.rc
|
182
|
-
- test/resources/testproject/testproject.res
|
183
185
|
- test/resources/testproject/testproject.xe5.dproj
|
184
186
|
- test/resources/testproject/testproject.xe7.dproj
|
185
187
|
- test/test-delphi-android.rb
|
@@ -224,8 +226,6 @@ summary: Tasks for building Delphi projects
|
|
224
226
|
test_files:
|
225
227
|
- test/helpers/consts.rb
|
226
228
|
- test/helpers/verinfo.rb
|
227
|
-
- test/resources/FakeDelphi/dcc32.exe
|
228
|
-
- test/resources/FakeDelphi/rc.exe
|
229
229
|
- test/resources/echo/file.in
|
230
230
|
- test/resources/echo/file.out
|
231
231
|
- test/resources/hashes/hash.2.file
|
@@ -235,14 +235,9 @@ test_files:
|
|
235
235
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
236
236
|
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
237
237
|
- test/resources/testproject-android/AndroidManifest.erb
|
238
|
-
- test/resources/testproject-android/AndroidManifest.xml
|
239
238
|
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
240
239
|
- test/resources/testproject-android/Rakefile.rb
|
241
|
-
- test/resources/testproject-android/TestProject.cfg
|
242
|
-
- test/resources/testproject-android/TestProject.cfg.1
|
243
240
|
- test/resources/testproject-android/TestProject.dpr
|
244
|
-
- test/resources/testproject-android/TestProject.rc
|
245
|
-
- test/resources/testproject-android/TestProject.res
|
246
241
|
- test/resources/testproject-android/TestProject.xe5.dproj
|
247
242
|
- test/resources/testproject-android/TestProject.xe7.dproj
|
248
243
|
- test/resources/testproject-android/external/module.ext
|
@@ -258,16 +253,13 @@ test_files:
|
|
258
253
|
- test/resources/testproject/local.resources.txt
|
259
254
|
- test/resources/testproject/release.dcc.cfg
|
260
255
|
- test/resources/testproject/resources.rc
|
261
|
-
- test/resources/testproject/resources.res
|
262
256
|
- test/resources/testproject/testproject.2006.bdsproj
|
263
257
|
- test/resources/testproject/testproject.2007.dproj
|
264
258
|
- test/resources/testproject/testproject.2010.dproj
|
265
259
|
- test/resources/testproject/testproject.cfg
|
266
|
-
- test/resources/testproject/testproject.cfg.1
|
267
260
|
- test/resources/testproject/testproject.dpr
|
268
261
|
- test/resources/testproject/testproject.ico
|
269
262
|
- test/resources/testproject/testproject.rc
|
270
|
-
- test/resources/testproject/testproject.res
|
271
263
|
- test/resources/testproject/testproject.xe5.dproj
|
272
264
|
- test/resources/testproject/testproject.xe7.dproj
|
273
265
|
- test/test-delphi-android.rb
|
data/1.patch
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
diff --git a/lib/rake/helpers/gemversion.rb b/lib/rake/helpers/gemversion.rb
|
2
|
-
index 7b85e12..fc40520 100644
|
3
|
-
--- a/lib/rake/helpers/gemversion.rb
|
4
|
-
+++ b/lib/rake/helpers/gemversion.rb
|
5
|
-
@@ -3,7 +3,9 @@
|
6
|
-
module Gem
|
7
|
-
class VersionImproved < Version
|
8
|
-
def initialize(version)
|
9
|
-
- super
|
10
|
-
+ # dup version
|
11
|
-
+ # to avoid error on earlier versions of Gem::Version with frozen strings
|
12
|
-
+ super(version.nil? ? version : version.dup)
|
13
|
-
@version = '0.0.0.0' if @version.empty?
|
14
|
-
# avoid bug when Gem::Version <= 1.3.7
|
15
|
-
@segments = nil
|
16
|
-
diff --git a/test/test-gemversion.rb b/test/test-gemversion.rb
|
17
|
-
index 608dec2..4880ff7 100644
|
18
|
-
--- a/test/test-gemversion.rb
|
19
|
-
+++ b/test/test-gemversion.rb
|
20
|
-
@@ -24,6 +24,10 @@ public
|
21
|
-
assert_equal '0,0,0,0', Gem::VersionImproved.new('').comma
|
22
|
-
end
|
23
|
-
|
24
|
-
+ def test_frozen_string
|
25
|
-
+ assert_equal '1.2.3.4', Gem::VersionImproved.new('1.2.3.4'.freeze).to_s
|
26
|
-
+ end
|
27
|
-
+
|
28
|
-
def test_comma
|
29
|
-
assert_equal '1,2,3,4', Gem::VersionImproved.new('1.2.3.4').comma
|
30
|
-
end
|
data/Messages.txt
DELETED
@@ -1,336 +0,0 @@
|
|
1
|
-
Build
|
2
|
-
Checking project dependencies...
|
3
|
-
Building HW.dproj (Debug, Android)
|
4
|
-
brcc32 command line for "HW.vrc"
|
5
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
6
|
-
dcc command line for "HW.dpr"
|
7
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;
|
8
|
-
Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG
|
9
|
-
-E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad
|
10
|
-
studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD
|
11
|
-
Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad
|
12
|
-
studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad
|
13
|
-
studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD
|
14
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD
|
15
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN
|
16
|
-
--linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\""
|
17
|
-
-NO.\Android\Debug HW.dpr
|
18
|
-
Success
|
19
|
-
Elapsed time: 00:00:14.5
|
20
|
-
Deploy
|
21
|
-
paclient command line
|
22
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
23
|
-
paclient command line
|
24
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
25
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
26
|
-
paclient command line
|
27
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
28
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
29
|
-
paclient command line
|
30
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
31
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
32
|
-
paclient command line
|
33
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
34
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
35
|
-
paclient command line
|
36
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
37
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
38
|
-
paclient command line
|
39
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
40
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
41
|
-
paclient command line
|
42
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
43
|
-
paclient command line
|
44
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
45
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
46
|
-
paclient command line
|
47
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
48
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
49
|
-
paclient command line
|
50
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
51
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
52
|
-
|
53
|
-
paclient command line
|
54
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
55
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
56
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
57
|
-
Failed
|
58
|
-
Elapsed time: 00:00:06.7
|
59
|
-
Deploy
|
60
|
-
paclient command line
|
61
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
62
|
-
paclient command line
|
63
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
64
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
65
|
-
paclient command line
|
66
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
67
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
68
|
-
paclient command line
|
69
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
70
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
71
|
-
paclient command line
|
72
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
73
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
74
|
-
paclient command line
|
75
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
76
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
77
|
-
paclient command line
|
78
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
79
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
80
|
-
paclient command line
|
81
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
82
|
-
paclient command line
|
83
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
84
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
85
|
-
paclient command line
|
86
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
87
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
88
|
-
paclient command line
|
89
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
90
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
91
|
-
|
92
|
-
paclient command line
|
93
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
94
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
95
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
96
|
-
paclient command line
|
97
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program
|
98
|
-
Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
99
|
-
|
100
|
-
paclient command line
|
101
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD
|
102
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
103
|
-
|
104
|
-
Success
|
105
|
-
Elapsed time: 00:00:11.3
|
106
|
-
Output
|
107
|
-
Build started 11.06.2014 16:04:11.
|
108
|
-
__________________________________________________
|
109
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Build target(s)):
|
110
|
-
Target CreateProjectDirectories:
|
111
|
-
Creating directory ".\Android\Debug".
|
112
|
-
Target BuildVersionResource:
|
113
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
114
|
-
CodeGear Resource Compiler/Binder
|
115
|
-
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
|
116
|
-
|
117
|
-
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
|
118
|
-
|
119
|
-
Copyright (C) Microsoft Corporation. All rights reserved.
|
120
|
-
|
121
|
-
|
122
|
-
Deleting file "HW.vrc".
|
123
|
-
Target _PasCoreCompile:
|
124
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG -E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN --linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\"" -NO.\Android\Debug HW.dpr
|
125
|
-
Build succeeded.
|
126
|
-
0 Warning(s)
|
127
|
-
0 Error(s)
|
128
|
-
Time Elapsed 00:00:14.45
|
129
|
-
Build started 11.06.2014 16:04:53.
|
130
|
-
__________________________________________________
|
131
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
132
|
-
Target _CleanRemoteDir:
|
133
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
134
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
135
|
-
Platform Assistant Client Version 4.2.0.05
|
136
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
137
|
-
|
138
|
-
Deleting file(s)...
|
139
|
-
Total file(s) deleted: 0 file(s) 0 dir(s)
|
140
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
141
|
-
Target _DeployFiles:
|
142
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
143
|
-
Platform Assistant Client Version 4.2.0.05
|
144
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
145
|
-
|
146
|
-
Copying file(s)...
|
147
|
-
Total file(s) copied: 1 file(s) 863 bytes
|
148
|
-
Target _DeployFiles:
|
149
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
150
|
-
Platform Assistant Client Version 4.2.0.05
|
151
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
152
|
-
|
153
|
-
Copying file(s)...
|
154
|
-
Total file(s) copied: 1 file(s) 1а921 bytes
|
155
|
-
Target _DeployFiles:
|
156
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
157
|
-
Platform Assistant Client Version 4.2.0.05
|
158
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
159
|
-
|
160
|
-
Copying file(s)...
|
161
|
-
Total file(s) copied: 1 file(s) 1а343а644 bytes
|
162
|
-
Target _DeployFiles:
|
163
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
164
|
-
Platform Assistant Client Version 4.2.0.05
|
165
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
166
|
-
|
167
|
-
Copying file(s)...
|
168
|
-
Total file(s) copied: 1 file(s) 268а812 bytes
|
169
|
-
Target _DeployFiles:
|
170
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
171
|
-
Platform Assistant Client Version 4.2.0.05
|
172
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
173
|
-
|
174
|
-
Copying file(s)...
|
175
|
-
Total file(s) copied: 1 file(s) 1а034 bytes
|
176
|
-
Target _DeployFiles:
|
177
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
178
|
-
Platform Assistant Client Version 4.2.0.05
|
179
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
180
|
-
|
181
|
-
Copying file(s)...
|
182
|
-
Total file(s) copied: 1 file(s) 2а343 bytes
|
183
|
-
Target _DeployFiles:
|
184
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
185
|
-
Platform Assistant Client Version 4.2.0.05
|
186
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
187
|
-
|
188
|
-
Copying file(s)...
|
189
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
190
|
-
Target _DeployFiles:
|
191
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
192
|
-
Platform Assistant Client Version 4.2.0.05
|
193
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
194
|
-
|
195
|
-
Copying file(s)...
|
196
|
-
Total file(s) copied: 1 file(s) 1а532 bytes
|
197
|
-
Target _DeployFiles:
|
198
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
199
|
-
Platform Assistant Client Version 4.2.0.05
|
200
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
201
|
-
|
202
|
-
Copying file(s)...
|
203
|
-
Total file(s) copied: 1 file(s) 2а674 bytes
|
204
|
-
Target __CreateAPKDirs:
|
205
|
-
Creating directory ".\Android\Debug\HW\bin".
|
206
|
-
Creating directory ".\Android\Debug\HW\assets".
|
207
|
-
Target __StripOutputFile:
|
208
|
-
Creating directory ".\Android\Debug\HW\debug".
|
209
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
210
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
211
|
-
Platform Assistant Client Version 4.2.0.05
|
212
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
213
|
-
|
214
|
-
Target _AndroidPackaging:
|
215
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
216
|
-
Platform Assistant Client Version 4.2.0.05
|
217
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
218
|
-
|
219
|
-
Build FAILED.
|
220
|
-
0 Warning(s)
|
221
|
-
0 Error(s)
|
222
|
-
Time Elapsed 00:00:06.70
|
223
|
-
Build started 11.06.2014 16:05:07.
|
224
|
-
__________________________________________________
|
225
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
226
|
-
Target _CleanRemoteDir:
|
227
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
228
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
229
|
-
Platform Assistant Client Version 4.2.0.05
|
230
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
231
|
-
|
232
|
-
Deleting file(s)...
|
233
|
-
Total file(s) deleted: 2 file(s) 3 dir(s)
|
234
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
235
|
-
Target _DeployFiles:
|
236
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
237
|
-
Platform Assistant Client Version 4.2.0.05
|
238
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
239
|
-
|
240
|
-
Copying file(s)...
|
241
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
242
|
-
Target _DeployFiles:
|
243
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
244
|
-
Platform Assistant Client Version 4.2.0.05
|
245
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
246
|
-
|
247
|
-
Copying file(s)...
|
248
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
249
|
-
Target _DeployFiles:
|
250
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
251
|
-
Platform Assistant Client Version 4.2.0.05
|
252
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
253
|
-
|
254
|
-
Copying file(s)...
|
255
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
256
|
-
Target _DeployFiles:
|
257
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
258
|
-
Platform Assistant Client Version 4.2.0.05
|
259
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
260
|
-
|
261
|
-
Copying file(s)...
|
262
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
263
|
-
Target _DeployFiles:
|
264
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
265
|
-
Platform Assistant Client Version 4.2.0.05
|
266
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
267
|
-
|
268
|
-
Copying file(s)...
|
269
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
270
|
-
Target _DeployFiles:
|
271
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
272
|
-
Platform Assistant Client Version 4.2.0.05
|
273
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
274
|
-
|
275
|
-
Copying file(s)...
|
276
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
277
|
-
Target _DeployFiles:
|
278
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
279
|
-
Platform Assistant Client Version 4.2.0.05
|
280
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
281
|
-
|
282
|
-
Copying file(s)...
|
283
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
284
|
-
Target _DeployFiles:
|
285
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
286
|
-
Platform Assistant Client Version 4.2.0.05
|
287
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
288
|
-
|
289
|
-
Copying file(s)...
|
290
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
291
|
-
Target _DeployFiles:
|
292
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
293
|
-
Platform Assistant Client Version 4.2.0.05
|
294
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
295
|
-
|
296
|
-
Copying file(s)...
|
297
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
298
|
-
Target __CreateAPKDirs:
|
299
|
-
Creating directory ".\Android\Debug\HW\bin".
|
300
|
-
Creating directory ".\Android\Debug\HW\assets".
|
301
|
-
Target __StripOutputFile:
|
302
|
-
Creating directory ".\Android\Debug\HW\debug".
|
303
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
304
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
305
|
-
Platform Assistant Client Version 4.2.0.05
|
306
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
307
|
-
|
308
|
-
Target _AndroidPackaging:
|
309
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
310
|
-
Platform Assistant Client Version 4.2.0.05
|
311
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
312
|
-
|
313
|
-
Target _AndroidSign:
|
314
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
315
|
-
Platform Assistant Client Version 4.2.0.05
|
316
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
317
|
-
|
318
|
-
Target _AndroidZipAlign:
|
319
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
320
|
-
Platform Assistant Client Version 4.2.0.05
|
321
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
322
|
-
|
323
|
-
Target __DeleteUnsignedAPKFile:
|
324
|
-
Deleting file ".\Android\Debug\HW\bin\HW-unsigned.apk".
|
325
|
-
Build succeeded.
|
326
|
-
0 Warning(s)
|
327
|
-
0 Error(s)
|
328
|
-
Time Elapsed 00:00:11.28
|
329
|
-
Search for 'RTL220_UP'
|
330
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc [6]
|
331
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(357): RTL220_UP Defined when compiling with Delphi or C++Builder Personalities of BDS 8.0 or higher
|
332
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(745): {$DEFINE RTL220_UP}
|
333
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(999): {$IFDEF RTL230_UP} {$DEFINE RTL220_UP} {$ENDIF}
|
334
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1000): {$IFDEF RTL220_UP} {$DEFINE RTL210_UP} {$ENDIF}
|
335
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1304): {$IFDEF RTL220_UP}
|
336
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1306): {$ENDIF RTL220_UP}
|
File without changes
|
File without changes
|
@@ -1,35 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<!-- BEGIN_INCLUDE(manifest) -->
|
3
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
-
package="com.embarcadero.HelloWorld"
|
5
|
-
android:versionCode="2"
|
6
|
-
android:versionName="1.3.2.4">
|
7
|
-
|
8
|
-
<!-- This is the platform API where NativeActivity was introduced. -->
|
9
|
-
<uses-sdk android:minSdkVersion="9" />
|
10
|
-
|
11
|
-
<application android:persistent="False"
|
12
|
-
android:restoreAnyVersion="False"
|
13
|
-
android:label="HelloWorld"
|
14
|
-
android:installLocation="preferExternal"
|
15
|
-
android:debuggable="True"
|
16
|
-
android:largeHeap="False"
|
17
|
-
android:icon="@drawable/ic_launcher"
|
18
|
-
android:theme="@android:style/Theme.NoTitleBar">
|
19
|
-
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
|
20
|
-
This will take care of integrating with our NDK code. -->
|
21
|
-
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
|
22
|
-
android:label="HelloWorld"
|
23
|
-
android:configChanges="orientation|keyboardHidden">
|
24
|
-
<!-- Tell NativeActivity the name of our .so -->
|
25
|
-
<meta-data android:name="android.app.lib_name"
|
26
|
-
android:value="TestProject" />
|
27
|
-
<intent-filter>
|
28
|
-
<action android:name="android.intent.action.MAIN" />
|
29
|
-
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
-
</intent-filter>
|
31
|
-
</activity>
|
32
|
-
<receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" />
|
33
|
-
</application>
|
34
|
-
</manifest>
|
35
|
-
<!-- END_INCLUDE(manifest) -->
|
@@ -1,62 +0,0 @@
|
|
1
|
-
#define VS_FF_DEBUG 0x00000001
|
2
|
-
#define VS_FF_PRERELEASE 0x00000002
|
3
|
-
#define VS_FF_PATCHED 0x00000004
|
4
|
-
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
-
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
-
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
-
|
8
|
-
#ifndef DEBUG
|
9
|
-
#define VER_DEBUG 0
|
10
|
-
#else
|
11
|
-
#define VER_DEBUG VS_FF_DEBUG
|
12
|
-
#endif
|
13
|
-
|
14
|
-
#ifndef RC
|
15
|
-
#define VER_PRERELEASE 0
|
16
|
-
#else
|
17
|
-
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
-
#endif
|
19
|
-
|
20
|
-
|
21
|
-
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
-
|
23
|
-
LANGUAGE 0x19, 0x01
|
24
|
-
#ifdef MAIN_ICON
|
25
|
-
MAINICON ICON "C:/cygwin/home/ashu/projects/MobileClientAlfaAuto/lib/rake-delphi/test/resources/testproject-android/TestProject.ico"
|
26
|
-
#endif
|
27
|
-
1 VERSIONINFO
|
28
|
-
FILEVERSION 1,3,2,4
|
29
|
-
PRODUCTVERSION 1,2,3,4
|
30
|
-
FILEOS 0x40004
|
31
|
-
FILETYPE 0x1
|
32
|
-
FILEFLAGSMASK _FILEFLAGS
|
33
|
-
FILEFLAGS _FILEFLAGS
|
34
|
-
BEGIN
|
35
|
-
BLOCK "StringFileInfo"
|
36
|
-
BEGIN
|
37
|
-
BLOCK "041904E3"
|
38
|
-
BEGIN
|
39
|
-
VALUE "CompanyName", "Rake\0"
|
40
|
-
VALUE "FileDescription", "Test rake-delphi project XE5 description\0"
|
41
|
-
VALUE "FileVersion", "1.3.2.4\0"
|
42
|
-
VALUE "InternalName", "testproject.exe\0"
|
43
|
-
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
-
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
-
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
-
VALUE "ProductName", "Test rake-delphi project XE5 product name\0"
|
47
|
-
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
-
VALUE "Comments", "Test project comment\0"
|
49
|
-
#ifdef DEBUG
|
50
|
-
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
-
#endif
|
52
|
-
#ifdef RC
|
53
|
-
VALUE "ReleaseCandidate", "\0"
|
54
|
-
#endif
|
55
|
-
END
|
56
|
-
END
|
57
|
-
|
58
|
-
BLOCK "VarFileInfo"
|
59
|
-
BEGIN
|
60
|
-
VALUE "Translation", 0x0419 0x04E3
|
61
|
-
END
|
62
|
-
END
|
Binary file
|
Binary file
|
Binary file
|