fastlane-plugin-change_domain 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -21
- data/README.md +52 -52
- data/lib/fastlane/plugin/change_domain/actions/change_domain_action.rb +105 -105
- data/lib/fastlane/plugin/change_domain/helper/change_domain_helper.rb +16 -16
- data/lib/fastlane/plugin/change_domain/version.rb +5 -5
- data/lib/fastlane/plugin/change_domain.rb +16 -16
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd9bb9636d6f1c79caa3216d622928d5244d713b3b6f3145054ab6494478f88d
|
4
|
+
data.tar.gz: b29668e47d7d8767f78f5ea00bf7db829e8656e41343a1077226dd5e771f6569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55f97e2cdc691364898f92ed9b293ac6a487ac044b2f4c7a6dc497bf44b4f51e26d237ee27f01097a19c31852bd9d437f1975c919c18d7b0e77c5bc69666b9e9
|
7
|
+
data.tar.gz: f2fa8c05665e4933c491ec98a6268e31053dabac98f0771bd068ee401ad8c253a8f5beb44b67e7bbee916f2a5f4afe1eab57b144cfd02761f8b15bb49e318514
|
data/LICENSE
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2021 Anandu <anandutr1995@gmail.com>
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Anandu <anandutr1995@gmail.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,52 +1,52 @@
|
|
1
|
-
# change_domain plugin
|
2
|
-
|
3
|
-
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-change_domain)
|
4
|
-
|
5
|
-
## Getting Started
|
6
|
-
|
7
|
-
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-change_domain`, add it to your project by running:
|
8
|
-
|
9
|
-
```bash
|
10
|
-
fastlane add_plugin change_domain
|
11
|
-
```
|
12
|
-
|
13
|
-
## About change_domain
|
14
|
-
|
15
|
-
Change the package name in android project
|
16
|
-
|
17
|
-
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
-
|
19
|
-
## Example
|
20
|
-
|
21
|
-
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
|
-
|
23
|
-
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
|
-
|
25
|
-
## Run tests for this plugin
|
26
|
-
|
27
|
-
To run both the tests, and code style validation, run
|
28
|
-
|
29
|
-
```
|
30
|
-
rake
|
31
|
-
```
|
32
|
-
|
33
|
-
To automatically fix many of the styling issues, use
|
34
|
-
```
|
35
|
-
rubocop -a
|
36
|
-
```
|
37
|
-
|
38
|
-
## Issues and Feedback
|
39
|
-
|
40
|
-
For any other issues and feedback about this plugin, please submit it to this repository.
|
41
|
-
|
42
|
-
## Troubleshooting
|
43
|
-
|
44
|
-
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
45
|
-
|
46
|
-
## Using _fastlane_ Plugins
|
47
|
-
|
48
|
-
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
49
|
-
|
50
|
-
## About _fastlane_
|
51
|
-
|
52
|
-
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
1
|
+
# change_domain plugin
|
2
|
+
|
3
|
+
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-change_domain)
|
4
|
+
|
5
|
+
## Getting Started
|
6
|
+
|
7
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-change_domain`, add it to your project by running:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
fastlane add_plugin change_domain
|
11
|
+
```
|
12
|
+
|
13
|
+
## About change_domain
|
14
|
+
|
15
|
+
Change the package name in android project
|
16
|
+
|
17
|
+
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
+
|
19
|
+
## Example
|
20
|
+
|
21
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
|
+
|
23
|
+
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
|
+
|
25
|
+
## Run tests for this plugin
|
26
|
+
|
27
|
+
To run both the tests, and code style validation, run
|
28
|
+
|
29
|
+
```
|
30
|
+
rake
|
31
|
+
```
|
32
|
+
|
33
|
+
To automatically fix many of the styling issues, use
|
34
|
+
```
|
35
|
+
rubocop -a
|
36
|
+
```
|
37
|
+
|
38
|
+
## Issues and Feedback
|
39
|
+
|
40
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
41
|
+
|
42
|
+
## Troubleshooting
|
43
|
+
|
44
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
45
|
+
|
46
|
+
## Using _fastlane_ Plugins
|
47
|
+
|
48
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
49
|
+
|
50
|
+
## About _fastlane_
|
51
|
+
|
52
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
@@ -1,105 +1,105 @@
|
|
1
|
-
require 'fastlane/action'
|
2
|
-
require_relative '../helper/change_domain_helper'
|
3
|
-
|
4
|
-
module Fastlane
|
5
|
-
module Actions
|
6
|
-
class ChangeDomainAction < Action
|
7
|
-
def self.run(params)
|
8
|
-
require 'nokogiri'
|
9
|
-
|
10
|
-
path = params[:path]
|
11
|
-
packageName = params[:package_name]
|
12
|
-
manifest = params[:manifest]
|
13
|
-
|
14
|
-
doc = File.open(manifest) { |f|
|
15
|
-
@doc = Nokogiri::XML(f)
|
16
|
-
|
17
|
-
originalPackageName = nil
|
18
|
-
|
19
|
-
@doc.css("manifest").each do |response_node|
|
20
|
-
originalPackageName = response_node["package"]
|
21
|
-
response_node["package"] = packageName
|
22
|
-
|
23
|
-
UI.message("Updating package name to: #{packageName}")
|
24
|
-
end
|
25
|
-
|
26
|
-
if originalPackageName != packageName
|
27
|
-
File.write(manifest, @doc.to_xml)
|
28
|
-
|
29
|
-
folder = originalPackageName.gsub('.', '/')
|
30
|
-
new_folder = packageName.gsub('.', '/')
|
31
|
-
|
32
|
-
if File.exist?("#{path}/app/src/main/java/#{folder}")
|
33
|
-
sourcesPath = "/app/src"
|
34
|
-
gradlePath = "/app"
|
35
|
-
new_folder_path = "#{path}#{sourcesPath}/main/java/#{new_folder}"
|
36
|
-
java_sources = Dir.glob("#{path}#{sourcesPath}/main/java/#{folder}/*.java")
|
37
|
-
elsif File.exist?("#{path}/src/#{folder}")
|
38
|
-
sourcesPath = "/src"
|
39
|
-
gradlePath = "/."
|
40
|
-
new_folder_path = "#{path}#{sourcesPath}/#{new_folder}"
|
41
|
-
java_sources = Dir.glob("#{path}#{sourcesPath}/#{folder}/*.java")
|
42
|
-
end
|
43
|
-
|
44
|
-
FileUtils::mkdir_p new_folder_path
|
45
|
-
|
46
|
-
java_sources.each do |file|
|
47
|
-
FileUtils.mv file, new_folder_path
|
48
|
-
end
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
end
|
55
|
-
|
56
|
-
UI.message("#{originalPackageName} successfully updated to #{packageName}")
|
57
|
-
}
|
58
|
-
end
|
59
|
-
|
60
|
-
def self.description
|
61
|
-
"Change the package identifier in the AndroidManifest.xml file"
|
62
|
-
end
|
63
|
-
|
64
|
-
def self.authors
|
65
|
-
["yeppao"]
|
66
|
-
end
|
67
|
-
|
68
|
-
def self.return_value
|
69
|
-
# If your method provides a return value, you can describe here what it does
|
70
|
-
end
|
71
|
-
|
72
|
-
def self.details
|
73
|
-
# Optional:
|
74
|
-
"It will permits you to change the package name of your project before the build"
|
75
|
-
end
|
76
|
-
|
77
|
-
def self.available_options
|
78
|
-
[
|
79
|
-
FastlaneCore::ConfigItem.new(key: :package_name,
|
80
|
-
env_name: "",
|
81
|
-
description: "New package name",
|
82
|
-
optional: true,
|
83
|
-
type: String),
|
84
|
-
FastlaneCore::ConfigItem.new(key: :manifest,
|
85
|
-
env_name: "",
|
86
|
-
description: "Location of your project AndroidManifest.xml",
|
87
|
-
optional: false,
|
88
|
-
type: String,
|
89
|
-
default_value: "app/src/main/AndroidManifest.xml"),
|
90
|
-
FastlaneCore::ConfigItem.new(key: :path,
|
91
|
-
env_name: "",
|
92
|
-
description: "Path of root Android project folder",
|
93
|
-
is_string: true,
|
94
|
-
optional: false,
|
95
|
-
default_value: ".")
|
96
|
-
]
|
97
|
-
end
|
98
|
-
|
99
|
-
def self.is_supported?(platform)
|
100
|
-
platform == :android
|
101
|
-
end
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
1
|
+
require 'fastlane/action'
|
2
|
+
require_relative '../helper/change_domain_helper'
|
3
|
+
|
4
|
+
module Fastlane
|
5
|
+
module Actions
|
6
|
+
class ChangeDomainAction < Action
|
7
|
+
def self.run(params)
|
8
|
+
require 'nokogiri'
|
9
|
+
|
10
|
+
path = params[:path]
|
11
|
+
packageName = params[:package_name]
|
12
|
+
manifest = params[:manifest]
|
13
|
+
|
14
|
+
doc = File.open(manifest) { |f|
|
15
|
+
@doc = Nokogiri::XML(f)
|
16
|
+
|
17
|
+
originalPackageName = nil
|
18
|
+
|
19
|
+
@doc.css("manifest").each do |response_node|
|
20
|
+
originalPackageName = response_node["package"]
|
21
|
+
response_node["package"] = packageName
|
22
|
+
|
23
|
+
UI.message("Updating package name to: #{packageName}")
|
24
|
+
end
|
25
|
+
|
26
|
+
if originalPackageName != packageName
|
27
|
+
File.write(manifest, @doc.to_xml)
|
28
|
+
|
29
|
+
folder = originalPackageName.gsub('.', '/')
|
30
|
+
new_folder = packageName.gsub('.', '/')
|
31
|
+
|
32
|
+
if File.exist?("#{path}/app/src/main/java/#{folder}")
|
33
|
+
sourcesPath = "/app/src"
|
34
|
+
gradlePath = "/app"
|
35
|
+
new_folder_path = "#{path}#{sourcesPath}/main/java/#{new_folder}"
|
36
|
+
java_sources = Dir.glob("#{path}#{sourcesPath}/main/java/#{folder}/*.java")
|
37
|
+
elsif File.exist?("#{path}/src/#{folder}")
|
38
|
+
sourcesPath = "/src"
|
39
|
+
gradlePath = "/."
|
40
|
+
new_folder_path = "#{path}#{sourcesPath}/#{new_folder}"
|
41
|
+
java_sources = Dir.glob("#{path}#{sourcesPath}/#{folder}/*.java")
|
42
|
+
end
|
43
|
+
|
44
|
+
FileUtils::mkdir_p new_folder_path
|
45
|
+
|
46
|
+
java_sources.each do |file|
|
47
|
+
FileUtils.mv file, new_folder_path
|
48
|
+
end
|
49
|
+
|
50
|
+
Bundler.with_clean_env do
|
51
|
+
|
52
|
+
sh "find #{path}#{gradlePath} -name 'build.gradle' -type f -exec sed -i -e 's/#{originalPackageName}/#{packageName}/' {} +"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
UI.message("#{originalPackageName} successfully updated to #{packageName}")
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
def self.description
|
61
|
+
"Change the package identifier in the AndroidManifest.xml file"
|
62
|
+
end
|
63
|
+
|
64
|
+
def self.authors
|
65
|
+
["yeppao"]
|
66
|
+
end
|
67
|
+
|
68
|
+
def self.return_value
|
69
|
+
# If your method provides a return value, you can describe here what it does
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.details
|
73
|
+
# Optional:
|
74
|
+
"It will permits you to change the package name of your project before the build"
|
75
|
+
end
|
76
|
+
|
77
|
+
def self.available_options
|
78
|
+
[
|
79
|
+
FastlaneCore::ConfigItem.new(key: :package_name,
|
80
|
+
env_name: "",
|
81
|
+
description: "New package name",
|
82
|
+
optional: true,
|
83
|
+
type: String),
|
84
|
+
FastlaneCore::ConfigItem.new(key: :manifest,
|
85
|
+
env_name: "",
|
86
|
+
description: "Location of your project AndroidManifest.xml",
|
87
|
+
optional: false,
|
88
|
+
type: String,
|
89
|
+
default_value: "app/src/main/AndroidManifest.xml"),
|
90
|
+
FastlaneCore::ConfigItem.new(key: :path,
|
91
|
+
env_name: "",
|
92
|
+
description: "Path of root Android project folder",
|
93
|
+
is_string: true,
|
94
|
+
optional: false,
|
95
|
+
default_value: ".")
|
96
|
+
]
|
97
|
+
end
|
98
|
+
|
99
|
+
def self.is_supported?(platform)
|
100
|
+
platform == :android
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
@@ -1,16 +1,16 @@
|
|
1
|
-
require 'fastlane_core/ui/ui'
|
2
|
-
|
3
|
-
module Fastlane
|
4
|
-
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
|
-
|
6
|
-
module Helper
|
7
|
-
class ChangeDomainHelper
|
8
|
-
# class methods that you define here become available in your action
|
9
|
-
# as `Helper::ChangeDomainHelper.your_method`
|
10
|
-
#
|
11
|
-
def self.show_message
|
12
|
-
UI.message("Hello from the change_domain plugin helper!")
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
1
|
+
require 'fastlane_core/ui/ui'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
|
+
|
6
|
+
module Helper
|
7
|
+
class ChangeDomainHelper
|
8
|
+
# class methods that you define here become available in your action
|
9
|
+
# as `Helper::ChangeDomainHelper.your_method`
|
10
|
+
#
|
11
|
+
def self.show_message
|
12
|
+
UI.message("Hello from the change_domain plugin helper!")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
module Fastlane
|
2
|
-
module ChangeDomain
|
3
|
-
VERSION = "0.1.
|
4
|
-
end
|
5
|
-
end
|
1
|
+
module Fastlane
|
2
|
+
module ChangeDomain
|
3
|
+
VERSION = "0.1.5"
|
4
|
+
end
|
5
|
+
end
|
@@ -1,16 +1,16 @@
|
|
1
|
-
require 'fastlane/plugin/change_domain/version'
|
2
|
-
|
3
|
-
module Fastlane
|
4
|
-
module ChangeDomain
|
5
|
-
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
-
def self.all_classes
|
7
|
-
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
# By default we want to import all available actions and helpers
|
13
|
-
# A plugin can contain any number of actions and plugins
|
14
|
-
Fastlane::ChangeDomain.all_classes.each do |current|
|
15
|
-
require current
|
16
|
-
end
|
1
|
+
require 'fastlane/plugin/change_domain/version'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module ChangeDomain
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
+
def self.all_classes
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# By default we want to import all available actions and helpers
|
13
|
+
# A plugin can contain any number of actions and plugins
|
14
|
+
Fastlane::ChangeDomain.all_classes.each do |current|
|
15
|
+
require current
|
16
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-change_domain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anandu
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -164,7 +164,7 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
-
description:
|
167
|
+
description:
|
168
168
|
email: anandutr1995@gmail.com
|
169
169
|
executables: []
|
170
170
|
extensions: []
|
@@ -180,7 +180,7 @@ homepage: https://github.com/Anandu-tr/fastlane-plugin-change_domain
|
|
180
180
|
licenses:
|
181
181
|
- MIT
|
182
182
|
metadata: {}
|
183
|
-
post_install_message:
|
183
|
+
post_install_message:
|
184
184
|
rdoc_options: []
|
185
185
|
require_paths:
|
186
186
|
- lib
|
@@ -195,8 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
- !ruby/object:Gem::Version
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
|
-
rubygems_version: 3.2
|
199
|
-
signing_key:
|
198
|
+
rubygems_version: 3.1.2
|
199
|
+
signing_key:
|
200
200
|
specification_version: 4
|
201
201
|
summary: Change the package name in android project
|
202
202
|
test_files: []
|