CN111736841B - Application integration development method and system based on mobile internet - Google Patents

Application integration development method and system based on mobile internet Download PDF

Info

Publication number
CN111736841B
CN111736841B CN202010447287.8A CN202010447287A CN111736841B CN 111736841 B CN111736841 B CN 111736841B CN 202010447287 A CN202010447287 A CN 202010447287A CN 111736841 B CN111736841 B CN 111736841B
Authority
CN
China
Prior art keywords
client
compiled
error
memory
application program
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN202010447287.8A
Other languages
Chinese (zh)
Other versions
CN111736841A (en
Inventor
黄旺华
梁浩文
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Guangdong Vocational and Technical College
Original Assignee
Guangdong Vocational and Technical College
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Guangdong Vocational and Technical College filed Critical Guangdong Vocational and Technical College
Priority to CN202010447287.8A priority Critical patent/CN111736841B/en
Publication of CN111736841A publication Critical patent/CN111736841A/en
Application granted granted Critical
Publication of CN111736841B publication Critical patent/CN111736841B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/362Software debugging
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Abstract

The invention discloses an application integration development method and system based on a mobile internet, wherein the application integration development method and system are based on a double-end development architecture of a client and a server, and the client packages a resource file through a packaging tool to obtain a package to be compiled: after waiting for the complete uploading of the packages to be compiled of each client, the server side combines all the packages to be compiled to obtain files to be compiled; starting a compiler by a server side to generate an object code from a file to be compiled; the server side sends the target codes to each client side; each client generates an application program from the target code through a linker; judging whether the client side has memory leakage or not so as to determine whether to re-compile or sign the application program, distributed program development can be realized, the workload of developers is reduced, the test is automatically and rapidly performed on the corresponding client side according to the code segments, the working efficiency of the developers and the stability of the application program are improved, and the occurrence probability of memory overflow is reduced.

Description

Application integration development method and system based on mobile internet
Technical Field
The invention belongs to the technical field of mobile application program development, and particularly relates to an application integration development method and system based on a mobile internet.
Background
The development of the mobile application program is generally to develop an Android or IOS application program by adopting an MVP architecture and Java language, the Model layer generally transmits acquired data to the Web Service layer, the acquired data are processed by the Web Service layer and then displayed to the UI layer, the Model layer comprises a Controller layer and a database, the data are transmitted to the Controller layer through the Controller layer, the data of the Controller layer are transmitted to the database for standby in a multithreading processing mode of a Netty framework, the database adopts the architecture management data of mysql and middleware mycat, the Web Service layer comprises a data query Service, a data configuration Service, a data acquisition Service and an API interface Service, the data of the database are bidirectionally transmitted to the Web Service layer, the UI layer comprises other application program output to a mobile phone APP or a mobile equipment end, the Web Service layer is used for analyzing and diagnosing the result, and the UI layer reads and queries the data transmitted by the Web Service layer; however, due to the read-write separation characteristic of the traditional development mode, when the application integration development of the mobile internet is performed, the Model layer corresponds to the Controller layer, the interface list of the client is uniformly written in the JinxiuImp.java of the Model layer, the access authority is limited when the architecture design is performed, the UI layer cannot directly access the interface list, the Model function is weakened, the workload of a developer is large, and the testing difficulty is large.
Disclosure of Invention
The invention provides an application integration development method and system based on a mobile internet, which are based on a double-end development architecture of a client and a server, wherein the client packages a resource file through a packaging tool to obtain a package to be compiled: after waiting for the complete uploading of the packages to be compiled of each client, the server side combines all the packages to be compiled to obtain files to be compiled; starting a compiler by a server side to generate an object code from a file to be compiled; the server side sends the target codes to each client side; each client generates an application program from the target code through a linker; the client runs the application program and performs memory leak detection so as to judge whether the client has memory leak or not; if the client side has memory leakage, capturing errors of the client side with the memory leakage, displaying corresponding error information on the client side according to code segments generated by the errors, modifying a code file according to the error information by a developer on the corresponding client side, and compiling again; if no memory leak occurs in all the clients, one random client signs the application program to generate a signed application program, and uploads the signed application program to the server.
In order to achieve the above objective, according to an aspect of the present invention, there is provided an application integration development method based on the mobile internet, which is developed based on the Android system by adopting MVP architecture design and Java language, and based on the retrofit2 network request framework, a server adopts Spring MVC, myBatis and netty communication server, and the method includes the following steps:
s100: the client packs the resource file through a packing tool to obtain a package to be compiled;
s200: uploading a package to be compiled to a server side;
s300: after waiting for the complete uploading of the packages to be compiled of each client, the server side combines all the packages to be compiled to obtain files to be compiled;
s400: starting a compiler by a server side to generate an object code from a file to be compiled;
s500: the server side sends the target codes to each client side;
s600: each client generates an application program from the target code through a linker;
s700: the client runs the application program and performs memory leak detection so as to judge whether the client has memory leak or not;
s800: if the client side has memory leakage, capturing errors of the client side with the memory leakage, displaying corresponding error information on the client side according to code segments generated by the errors, modifying a code file by a developer on the corresponding client side according to the error information, and turning to step S100 after modification is completed;
s900: if no memory leak occurs in all the clients, one random client signs the application program to generate a signed application program, and uploads the signed application program to the server.
Further, in S100, the client is connected to the server, and is used for writing and packaging a local program, detecting memory leakage, signing an application program, writing source codes, packaging source codes and class libraries of Resource files, where the Resource files include Resource files, assembly files, android management file xml files, android basic class libraries and client numbers; the packaging tool comprises an aapt tool which is used for generating apk by Apktool, and the package to be compiled is a file obtained by packaging a resource file by the packaging tool, wherein the resource file comprises a source code and a class library.
Further, in S200, the server includes at least a compiler, configured to compile a file to be compiled.
Further, in S300, after the server waits for the package to be compiled of each client to be uploaded completely, the method for merging all packages to be compiled to obtain the file to be compiled includes the following steps:
s301: the server receives the packages to be compiled of all the clients, and when the packages to be compiled in all the clients are completely uploaded, the step S302 is transferred;
s302: carrying out source code combination on each package to be compiled to obtain a combined code; the source code merging method is to merge source codes by any one tool in Amalgamate and Beyond computer;
s303: repackaging the combined codes and the resource files in each package to be compiled to obtain the files to be compiled, wherein the packaging tool comprises aapt.
Further, in S700, the method for performing memory leak detection includes: memory leak detection is performed by any of LCLink, ccmalloc, dmalloc, electric Fence, leaky, leakTracer, MEMWATCH, valgrind, KCachegrind, IBM Rational PurifyPlus, pararoftIncure++, compuware DevPartner for Visual C ++ BoundsChecker Suite, electric Software GlowCode, compuware DevPartner Java Edition, quest JProbe, ej-technologies JProfiler, and BEAJRockit tools.
Further, in S800, the method for capturing the error of the client with the memory leak and displaying the corresponding error information on the client according to the code segment generated by the error includes: the client detects the memory leakage, if the memory leakage happens, the abnormality thrown by the code segment with the error is captured, whether the source of the code segment with the error is the package to be compiled of the client is judged, if not, the error is not displayed on the interface of the client, and if so, the abnormality thrown by the code segment is displayed on the interface of the client.
Further, in S800, the method for capturing the error of the client with the memory leak and displaying the corresponding error information on the client according to the code segment generated by the error includes: and the client detects the memory leakage, and if the memory leakage happens, the client collects the information such as the model number, the system version and the like of the current equipment and displays the information on an interface of the client.
Further, in S800, the method for signing the application program to generate a signed application program includes: the application is signed by any one of the signing tools keytool, keystore and jamsigner.
The invention also provides an application integration development system based on the mobile internet, which comprises: a memory, a processor, and a computer program stored in the memory and executable on the processor, the processor executing the computer program to run in units of the following system:
the resource packaging unit is used for the client to package the resource file through the packaging tool to obtain a package to be compiled;
the resource uploading unit is used for uploading the package to be compiled to the server side;
the resource merging unit is used for merging all the packages to be compiled to obtain files to be compiled after the server waits for the packages to be compiled of all the clients to be uploaded completely;
the resource compiling unit is used for starting a compiler at the server side to generate target codes from files to be compiled;
the target downloading unit is used for sending the target codes to each client side by the server side;
the target link unit is used for generating an application program from target codes through a linker by each client;
the leakage detection unit is used for running an application program by the client and detecting memory leakage so as to judge whether the memory leakage occurs in the client;
the error capturing unit is used for capturing the error of the client with the memory leakage if the memory leakage occurs in the client, displaying corresponding error information on the client according to the code segment generated by the error, modifying the code file by a developer according to the error information on the corresponding client, and transferring to the resource packaging unit after the modification is completed;
and the application signature unit is used for signing the application program by one random client side to generate a signed application program if memory leakage does not occur in all the client sides, and uploading the signed application program to the server side.
The beneficial effects of the invention are as follows: the invention provides an application integration development method and system based on a mobile internet, which can realize distributed program development, reduce the workload of developers, automatically and quickly test corresponding clients according to code segments, improve the working efficiency of the developers and the stability of application programs, and reduce the occurrence probability of memory overflow.
Drawings
The above and other features of the present invention will become more apparent from the detailed description of the embodiments thereof given in conjunction with the accompanying drawings, in which like reference characters designate like or similar elements, and it is apparent that the drawings in the following description are merely some examples of the present invention, and other drawings may be obtained from these drawings without inventive effort to those of ordinary skill in the art, in which:
FIG. 1 is a flow chart of a mobile Internet-based application integration development method;
fig. 2 is a diagram showing a structure of an application integration development system based on the mobile internet.
Detailed Description
The conception, specific structure, and technical effects produced by the present invention will be clearly and completely described below with reference to the embodiments and the drawings to fully understand the objects, aspects, and effects of the present invention. It should be noted that, in the case of no conflict, the embodiments and features in the embodiments may be combined with each other.
Referring to fig. 1, a flowchart of an application integration development method based on the mobile internet according to the present invention is shown, and an application integration development method based on the mobile internet according to an embodiment of the present invention is described below with reference to fig. 1.
The invention provides an application integration development method based on a mobile internet, which specifically comprises the following steps:
s100: the client packs the resource file through a packing tool to obtain a package to be compiled;
s200: uploading a package to be compiled to a server side;
s300: after waiting for the complete uploading of the packages to be compiled of each client, the server side combines all the packages to be compiled to obtain files to be compiled;
s400: starting a compiler by a server side to generate an object code from a file to be compiled;
s500: the server side sends the target codes to each client side;
s600: each client generates an application program from the target code through a linker;
s700: the client runs the application program and performs memory leak detection so as to judge whether the client has memory leak or not;
s800: if the client side has memory leakage, capturing errors of the client side with the memory leakage, displaying corresponding error information on the client side according to code segments generated by the errors, modifying a code file by a developer on the corresponding client side according to the error information, and turning to step S100 after modification is completed;
s900: if no memory leak occurs in all the clients, one random client signs the application program to generate a signed application program, and uploads the signed application program to the server.
Further, in S100, the client is connected to the server, and is used for writing and packaging a local program, detecting memory leakage, signing an application program, writing source codes, packaging source codes and class libraries of Resource files, where the Resource files include Resource files, assembly files, android management file xml files, android basic class libraries and client numbers; the packaging tool comprises an aapt tool which is used for generating apk by Apktool, and the package to be compiled is a file obtained by packaging a resource file by the packaging tool, wherein the resource file comprises a source code and a class library.
Further, in S200, the server includes at least a compiler, configured to compile a file to be compiled.
Further, in S300, after the server waits for the package to be compiled of each client to be uploaded completely, the method for merging all packages to be compiled to obtain the file to be compiled includes the following steps:
s301: the server receives the packages to be compiled of all the clients, and when the packages to be compiled in all the clients are completely uploaded, the step S302 is transferred;
s302: carrying out source code combination on each package to be compiled to obtain a combined code; the source code merging method is to merge source codes by any one tool in Amalgamate and Beyond computer;
s303: and repackaging the combined codes and the resource files in each package to be compiled to obtain the files to be compiled.
Further, in S700, the method for performing memory leak detection includes: memory leak detection is performed by any of LCLink, ccmalloc, dmalloc, electric Fence, leaky, leakTracer, MEMWATCH, valgrind, KCachegrind, IBM Rational PurifyPlus, pararoftIncure++, compuware DevPartner for Visual C ++ BoundsChecker Suite, electric Software GlowCode, compuware DevPartner Java Edition, quest JProbe, ej-technologies JProfiler, and BEAJRockit tools.
Further, in S800, the method for capturing the error of the client with the memory leak and displaying the corresponding error information on the client according to the code segment generated by the error includes: the client detects the memory leakage, if the memory leakage happens, the abnormality thrown by the code segment with the error is captured, whether the source of the code segment with the error is the package to be compiled of the client is judged, if not, the error is not displayed on the interface of the client, and if so, the abnormality thrown by the code segment is displayed on the interface of the client.
Further, in S800, the method for capturing the error of the client with the memory leak and displaying the corresponding error information on the client according to the code segment generated by the error includes: and the client detects the memory leakage, and if the memory leakage happens, the client collects the information such as the model number, the system version and the like of the current equipment and displays the information on an interface of the client.
Further, in S800, the method for signing the application program to generate a signed application program includes: signing an application program through any one signing tool of keytool, keystore and jamsign, the embodiment of the invention provides an application integrated development system based on mobile internet, as shown in fig. 2, which is a structure diagram of an application integrated development system based on mobile internet, and the embodiment of the application integrated development system based on mobile internet includes: a processor, a memory, and a computer program stored in the memory and executable on the processor, the processor implementing the steps in an embodiment of a mobile internet-based application integration development system when the computer program is executed.
The system comprises: a memory, a processor, and a computer program stored in the memory and executable on the processor, the processor executing the computer program to run in units of the following system:
the resource packaging unit is used for the client to package the resource file through the packaging tool to obtain a package to be compiled;
the resource uploading unit is used for uploading the package to be compiled to the server side;
the resource merging unit is used for merging all the packages to be compiled to obtain files to be compiled after the server waits for the packages to be compiled of all the clients to be uploaded completely;
the resource compiling unit is used for starting a compiler at the server side to generate target codes from files to be compiled;
the target downloading unit is used for sending the target codes to each client side by the server side;
the target link unit is used for generating an application program from target codes through a linker by each client;
the leakage detection unit is used for running an application program by the client and detecting memory leakage so as to judge whether the memory leakage occurs in the client;
the error capturing unit is used for capturing the error of the client with the memory leakage if the memory leakage occurs in the client, displaying corresponding error information on the client according to the code segment generated by the error, modifying the code file by a developer according to the error information on the corresponding client, and transferring to the resource packaging unit after the modification is completed;
and the application signature unit is used for signing the application program by one random client side to generate a signed application program if memory leakage does not occur in all the client sides, and uploading the signed application program to the server side.
The application integration development system based on the mobile internet can be operated in computing equipment such as a desktop computer, a notebook computer, a palm computer, a cloud server and the like. The mobile internet-based application integration development system can comprise, but is not limited to, a processor and a memory. It will be appreciated by those skilled in the art that the example is merely an example of a mobile internet-based application integration development system, and is not limited to a mobile internet-based application integration development system, and may include more or less components than examples, or may combine certain components, or different components, e.g., the mobile internet-based application integration development system may further include input and output devices, network access devices, buses, etc.
The processor may be a central processing unit (Central Processing Unit, CPU), other general purpose processors, digital signal processors (Digital Signal Processor, DSP), application specific integrated circuits (Application Specific Integrated Circuit, ASIC), field programmable gate arrays (Field-Programmable Gate Array, FPGA) or other programmable logic devices, discrete gate or transistor logic devices, discrete hardware components, or the like. The general processor may be a microprocessor or the processor may be any conventional processor, etc., and the processor is a control center of the mobile internet-based application integrated development system operating system, and connects various parts of the whole mobile internet-based application integrated development system operating system by using various interfaces and lines.
The memory may be used to store the computer program and/or module, and the processor may implement various functions of the mobile internet-based application integration development system by running or executing the computer program and/or module stored in the memory and invoking data stored in the memory. The memory may mainly include a storage program area and a storage data area, wherein the storage program area may store an operating system, an application program (such as a sound playing function, an image playing function, etc.) required for at least one function, and the like; the storage data area may store data (such as audio data, phonebook, etc.) created according to the use of the handset, etc. In addition, the memory may include high-speed random access memory, and may also include non-volatile memory, such as a hard disk, memory, plug-in hard disk, smart Media Card (SMC), secure Digital (SD) Card, flash Card (Flash Card), at least one disk storage device, flash memory device, or other volatile solid-state storage device.
While the present invention has been described in considerable detail and with particularity with respect to several described embodiments, it is not intended to be limited to any such detail or embodiments or any particular embodiment, but is to be construed as providing broad interpretation of such claims by reference to the appended claims in view of the prior art so as to effectively encompass the intended scope of the invention. Furthermore, the foregoing description of the invention has been presented in its embodiments contemplated by the inventors for the purpose of providing a useful description, and for the purposes of providing a non-essential modification of the invention that may not be presently contemplated, may represent an equivalent modification of the invention.

Claims (3)

1. An application integration development method based on mobile internet, which is developed by adopting MVP architecture design and Java language based on Android system and adopting Spring MVC, myBatis and netty communication server based on retrofit2 network request frame, is characterized by comprising the following steps:
s100: the client packs the resource file through a packing tool to obtain a package to be compiled;
s200: uploading a package to be compiled to a server side;
s300: after waiting for the complete uploading of the packages to be compiled of each client, the server side combines all the packages to be compiled to obtain files to be compiled;
s400: starting a compiler by a server side to generate an object code from a file to be compiled;
s500: the server side sends the target codes to each client side;
s600: each client generates an application program from the target code through a linker;
s700: the client runs the application program and performs memory leak detection so as to judge whether the client has memory leak or not;
s800: if the client side has memory leakage, capturing errors of the client side with the memory leakage, displaying corresponding error information on the client side according to code segments generated by the errors, modifying a code file by a developer on the corresponding client side according to the error information, and turning to step S100 after modification is completed;
s900: if all the clients do not have memory leakage, signing the application program by one random client to generate a signed application program, and uploading the signed application program to the server;
in S700, the method for performing memory leak detection includes: memory leak detection is performed by any one of LCLink, ccmalloc, dmalloc, electric Fence, leaky, leakTracer, MEMWATCH, valgrind, KCachegrind, IBM Rational PurifyPlus, pararoftIncure++, compuware DevPartner for Visual C ++ BoundsChecker Suite, electric Software GlowCode, compuware DevPartner Java Edition, quest JProbe, ej-technologies JProfiler, and BEAJRockit;
in S800, the method for capturing the error of the client with the memory leak and displaying the corresponding error information on the client according to the code segment generated by the error includes: the method comprises the steps that a client detects memory leakage, if the memory leakage occurs, an abnormality thrown by a code segment with an error is captured, whether the source of the code segment with the error is a package to be compiled of the client is judged, if the source of the code segment with the error is not a package to be compiled of the client, the error is not displayed on an interface of the client, and if the source of the code segment with the error is not a package to be compiled of the client, the abnormality thrown by the code segment is displayed on the interface of the client;
in S900, the method for signing an application to generate a signed application includes: the application is signed by any one of the signing tools keytool, keystore and jamsigner.
2. The method for developing application integration based on mobile internet as claimed in claim 1, wherein in S300, the method for merging all the packages to be compiled to obtain the file to be compiled after the server waits for the packages to be compiled of each client to be uploaded completely includes the following steps:
s301: the server receives the packages to be compiled of all the clients, and when the packages to be compiled in all the clients are completely uploaded, the step S302 is transferred;
s302: carrying out source code combination on each package to be compiled to obtain a combined code; the source code merging method is to merge source codes by any one tool in Amalgamate and Beyond computer;
s303: and packaging the combined codes and the resource files in each package to be compiled to obtain the files to be compiled.
3. An application integrated development system based on mobile internet, which is developed by adopting MVP architecture design and Java language based on Android system, and adopting Spring MVC, myBatis and netty communication server based on retrofit2 network request frame at server side, characterized in that the system comprises: a memory, a processor, and a computer program stored in the memory and executable on the processor, the processor executing the computer program to run in units of the following system:
the resource packaging unit is used for the client to package the resource file through the packaging tool to obtain a package to be compiled;
the resource uploading unit is used for uploading the package to be compiled to the server side;
the resource merging unit is used for merging all the packages to be compiled to obtain files to be compiled after the server waits for the packages to be compiled of all the clients to be uploaded completely;
the resource compiling unit is used for starting a compiler at the server side to generate target codes from files to be compiled;
the target downloading unit is used for sending the target codes to each client side by the server side;
the target link unit is used for generating an application program from target codes through a linker by each client;
the leakage detection unit is used for running an application program by the client and detecting memory leakage so as to judge whether the memory leakage occurs in the client;
the error capturing unit is used for capturing the error of the client with the memory leakage if the memory leakage occurs in the client, displaying corresponding error information on the client according to the code segment generated by the error, modifying the code file by a developer according to the error information on the corresponding client, and transferring to the resource packaging unit after the modification is completed;
the application signature unit is used for signing the application program by one random client side to generate a signed application program if memory leakage does not occur in all the client sides, and uploading the signed application program to the server side;
the method for detecting the memory leakage comprises the following steps: memory leak detection is performed by any one of LCLink, ccmalloc, dmalloc, electric Fence, leaky, leakTracer, MEMWATCH, valgrind, KCachegrind, IBM Rational PurifyPlus, pararoftIncure++, compuware DevPartner for Visual C ++ BoundsChecker Suite, electric Software GlowCode, compuware DevPartner Java Edition, quest JProbe, ej-technologies JProfiler, and BEAJRockit;
the method for capturing the error of the client side with the memory leakage and displaying the corresponding error information on the client side according to the code segment generated by the error comprises the following steps: the method comprises the steps that a client detects memory leakage, if the memory leakage occurs, an abnormality thrown by a code segment with an error is captured, whether the source of the code segment with the error is a package to be compiled of the client is judged, if the source of the code segment with the error is not a package to be compiled of the client, the error is not displayed on an interface of the client, and if the source of the code segment with the error is not a package to be compiled of the client, the abnormality thrown by the code segment is displayed on the interface of the client;
the method for signing the application program to generate the signed application program comprises the following steps: the application is signed by any one of the signing tools keytool, keystore and jamsigner.
CN202010447287.8A 2020-05-25 2020-05-25 Application integration development method and system based on mobile internet Active CN111736841B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010447287.8A CN111736841B (en) 2020-05-25 2020-05-25 Application integration development method and system based on mobile internet

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010447287.8A CN111736841B (en) 2020-05-25 2020-05-25 Application integration development method and system based on mobile internet

Publications (2)

Publication Number Publication Date
CN111736841A CN111736841A (en) 2020-10-02
CN111736841B true CN111736841B (en) 2023-07-04

Family

ID=72647715

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010447287.8A Active CN111736841B (en) 2020-05-25 2020-05-25 Application integration development method and system based on mobile internet

Country Status (1)

Country Link
CN (1) CN111736841B (en)

Citations (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102289378A (en) * 2011-09-30 2011-12-21 互动在线(北京)科技有限公司 Method for automatically generating APP (Application)
CN103176774A (en) * 2011-12-21 2013-06-26 中国移动通信集团广东有限公司 Compiling method, compiling device and compiling system of application program
CN103701930A (en) * 2014-01-07 2014-04-02 浙江大学 Mobile application program real-time updating method and system
CN106909500A (en) * 2015-12-23 2017-06-30 黄正兰 The detection method and system of mistake are introduced in Airborne Software development process
CN107194250A (en) * 2017-03-31 2017-09-22 武汉斗鱼网络科技有限公司 The integrity checking method and device of internal storage code
CN109815651A (en) * 2019-01-18 2019-05-28 北京智游网安科技有限公司 IOS applied program processing method, system and medium based on intermediate code
CN109814912A (en) * 2018-12-15 2019-05-28 中国平安人寿保险股份有限公司 Application program packaging method and system
CN110333872A (en) * 2019-07-09 2019-10-15 广州虎牙科技有限公司 A kind of processing method of application, device, equipment and medium
CN110851135A (en) * 2019-09-12 2020-02-28 中国平安财产保险股份有限公司 Automatic application program building and uploading method and device, computer equipment and storage medium

Patent Citations (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102289378A (en) * 2011-09-30 2011-12-21 互动在线(北京)科技有限公司 Method for automatically generating APP (Application)
CN103176774A (en) * 2011-12-21 2013-06-26 中国移动通信集团广东有限公司 Compiling method, compiling device and compiling system of application program
CN103701930A (en) * 2014-01-07 2014-04-02 浙江大学 Mobile application program real-time updating method and system
CN106909500A (en) * 2015-12-23 2017-06-30 黄正兰 The detection method and system of mistake are introduced in Airborne Software development process
CN107194250A (en) * 2017-03-31 2017-09-22 武汉斗鱼网络科技有限公司 The integrity checking method and device of internal storage code
CN109814912A (en) * 2018-12-15 2019-05-28 中国平安人寿保险股份有限公司 Application program packaging method and system
CN109815651A (en) * 2019-01-18 2019-05-28 北京智游网安科技有限公司 IOS applied program processing method, system and medium based on intermediate code
CN110333872A (en) * 2019-07-09 2019-10-15 广州虎牙科技有限公司 A kind of processing method of application, device, equipment and medium
CN110851135A (en) * 2019-09-12 2020-02-28 中国平安财产保险股份有限公司 Automatic application program building and uploading method and device, computer equipment and storage medium

Also Published As

Publication number Publication date
CN111736841A (en) 2020-10-02

Similar Documents

Publication Publication Date Title
US20140372985A1 (en) API Rules Verification Platform
US8156473B2 (en) Model oriented debugging
US9519495B2 (en) Timed API rules for runtime verification
US8997069B2 (en) API descriptions
AU2019203361A1 (en) Application management platform
US9665465B1 (en) Automated determination of application permissions
US20160026519A1 (en) Application Compatibility Leveraging Successful Resolution of Issues
US20080209405A1 (en) Distributed debugging for a visual programming language
US11726799B2 (en) Preventing framework conflicts for multi-OS applications
US20060026463A1 (en) Methods and systems for validating a system environment
CN110727581B (en) Crash positioning method and electronic equipment
CN110737631A (en) data analysis method and device based on Flink engine
US9779014B2 (en) Resilient mock object creation for unit testing
CN110955409B (en) Method and device for creating resources on cloud platform
CN111740948A (en) Data packet issuing method, dynamic updating method, device, equipment and medium
US20160085883A1 (en) Verification System for System Design Consistency
CN111736841B (en) Application integration development method and system based on mobile internet
CN111258802A (en) Method for capturing application program crash information and related equipment
US20200272555A1 (en) Automatic software behavior identification using execution record
CN114116509A (en) Program analysis method, program analysis device, electronic device, and storage medium
CN112506781B (en) Test monitoring method, device, electronic equipment, storage medium and program product
CN115248680A (en) Software construction method, system, device, medium, and program product
CN113778451A (en) File loading method and device, computer system and computer readable storage medium
CN113626307A (en) Data verification method and device based on K8S container platform
CN112068814A (en) Method, device, system and medium for generating executable file

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant