توفير طريقة بسيطة للحفاظ على معلوماتك الآمنة آمنة لتطوير تطبيقات Android.
中文
إنجليزي
سيتم تجميع جميع القيم الرئيسية تلقائيًا في مكتبة أصلية أثناء وقت الترجمة. ثم يمكنك الحصول عليها من واجهة Java التي تم إنشاؤها بواسطة Cipher.so.
أضف تبعية maven { url 'https://jitpack.io' }
و classpath 'com.github.MEiDIK:Cipher.so:dev-SNAPSHOT'
في نص البناء:
buildscript {
repositories {
google()
maven { url ' https://jitpack.io ' }
}
dependencies {
classpath ' com.android.tools.build:gradle:3.0.1 '
classpath ' com.github.MEiDIK:Cipher.so:dev-SNAPSHOT '
}
}
أضف apply plugin:'cipher.so'
قبل ( مهم جدًا ) apply plugin: 'com.android.application'
apply plugin : ' cipher.so '
apply plugin : ' com.android.application '
هذا كل شيء، Cipher.so جاهز للانطلاق.
في وحدة تطبيقك build.gradle، أضف التكوينات المشابهة للمتابعة لحفظ القيم الأساسية.
cipher . so {
keys {
hello {
value = ' Hello From Cipher.so? '
}
httpsKey {
value = ' htkdjfkj@https2017now '
}
数据库密码 {
value = '今天天气不错?? '
}
.. .
}
encryptSeed = ' HelloSecretKey ' // Secret key used for encryption
}
ثم أعد البناء لإنشاء واجهة Java.
String hello = CipherClient . hello ();
String httpsKey = CipherClient . httpsKey ();
String dbKey = CipherClient .数据库密码();
عينة: HelloCipherSo
أنا سعيد جدًا بمساهماتك. دعونا نجعل هذه الوظيفة رائعة.
فيما يلي سير عمل المساهمة من جيثب: دليل المساهمة
القيمة الرئيسية هي القيمة الأصلية لذا، فإن ما عليك فعله هو تعلم جافا.
قم بإنشاء رابط بناء البرنامج النصي maven { url 'https://jitpack.io' }
، وقم بإنشاء مسار classpath 'com.github.MEiDIK:Cipher.so:dev-SNAPSHOT'
:
buildscript {
repositories {
google()
maven { url ' https://jitpack.io ' }
}
dependencies {
classpath ' com.android.tools.build:gradle:3.0.1 '
classpath ' com.github.MEiDIK:Cipher.so:dev-SNAPSHOT '
}
}
apply plugin: 'com.android.application'
( البرنامج المساعد ) apply plugin:'cipher.so'
apply plugin : ' cipher.so '
apply plugin : ' com.android.application '
تم تطويره بواسطة Cipher.so.
يحتوي التطبيق على build.gradle، ويحدد قيمة المفتاح.
cipher . so {
keys {
hello {
value = ' Hello From Cipher.so? '
}
httpsKey {
value = ' htkdjfkj@https2017now '
}
数据库密码 {
value = '今天天气不错?? '
}
.. .
}
encryptSeed = ' HelloSecretKey ' //用于加密的密钥
}
قم بإعادة البناء باستخدام Java.
String hello = CipherClient . hello ();
String httpsKey = CipherClient . httpsKey ();
String dbKey = CipherClient .数据库密码();
على سبيل المثال: HelloCipherSo
لا داعي للقلق بشأن ما قد يحدث.
مراجعة موقع Github: دليل المساهمة
Copyright 2017 认真的帅斌
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.