- Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathAndroidParameters.cs
45 lines (41 loc) · 1.68 KB
/
AndroidParameters.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright 2017 Google LLC
*
* 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.
*/
namespaceFirebase.DynamicLinks{
/// @brief Android Parameters.
publicclassAndroidParameters{
/// Creates an Android Parameters object with the given package name.
///
/// @param packageName The package name of the Android app to use to open
/// the link. The app must be connected to your project from the Overview
/// page of the Firebase console.
publicAndroidParameters(stringpackageName){
PackageName=packageName;
}
/// The package name of the Android app to use to open the link. The app
/// must be connected to your project from the Overview page of the
/// Firebase console.
publicstringPackageName{get;set;}
/// The link to open when the app isn't installed.
///
/// Specify this to do something other than install your app from the
/// Play Store when the app isn't installed, such as open the mobile web
/// version of the content, or display a promotional page for your app.
publicSystem.UriFallbackUrl{get;set;}
/// The versionCode of the minimum version of your app that can open the
/// link.
publicintMinimumVersion{get;set;}
}
}